The Multiverse wiki is community-maintained — no coding experience required! If you play on a server using Multiverse and spot something outdated, incorrect, or missing, you can help fix it directly from your browser.
Spotted a bug or have a suggestion? Open an issue and let us know!
- Before You Start
- Fixing a Small Mistake on an Existing Page
- Making Bigger Edits or Adding a New Page
- Markdown Basics
- For Developers: Running the Site Locally
You will need a free GitHub account. If you don't have one yet, sign up here — it only takes a minute.
That's it. No software to install, no coding knowledge needed.
This is the easiest way to contribute. Use this for:
- Fixing typos or grammar
- Correcting outdated command syntax
- Clarifying confusing wording
- Adding a missing detail to an existing section
Step 1 — Go to the wiki page you want to edit on mvplugins.org and scroll to the bottom. Click "Suggest changes to this page".
Step 2 — GitHub will open the file in its online editor. If prompted, click "Fork this repository" — this creates your own copy to make changes in.
Step 3 — Make your edits directly in the text editor. The file uses Markdown formatting (see Markdown Basics below if you're unfamiliar).
Step 4 — When you're done, click "Commit changes" in the top-right corner. Give your change a short description (e.g. Fix typo in installation page), then click "Propose changes".
Step 5 — GitHub will show a summary of your changes. Click "Create pull request" and submit it. A Multiverse team member will review and merge it.
Having trouble? Drop a message in the Multiverse Discord or open an issue describing what you want to change and we'll handle it for you.
If you enjoy using Multiverse but don't have anything specific to add to the wiki right now — or if writing just isn't your thing — there's another way to show your support: a donation.
Multiverse is maintained by volunteers in their spare time. Every donation, no matter how small, helps keep the project alive and the developers motivated to keep building and improving the plugins you rely on.
If Multiverse has ever saved you hours of server setup, made your players happy, or just worked when you needed it to — consider giving something back. It means more than you might think. ❤️
GitHub Sponsors · Open Collective — thank you for your support!
For adding a full new page or reorganising a section, you'll work directly in GitHub without needing to install anything on your computer.
- Go to github.com/Multiverse/multiverse-web.
- Click the Fork button in the top-right corner.
- GitHub will create a copy of the repository under your account.
All wiki pages live inside the src/routes/ folder. The structure mirrors the website URL:
| URL | File location |
|---|---|
/core/fundamentals/installation |
src/routes/core/fundamentals/installation/+page.md |
/inventories/reference/faq |
src/routes/inventories/reference/faq/+page.md |
To edit an existing page — navigate to the file in your forked repo and click the pencil (edit) icon.
To create a new page:
- Navigate to the correct folder inside
src/routes/. - Click "Add file" → "Create new file".
- Name the file
<your-page-name>/+page.md(the folder name becomes the URL slug).
Every page starts with a small header block followed by your content:
---
title: "Your Page Title"
---
## First Section
Your content goes here...The title field controls what appears in the browser tab and sidebar.
New pages won't appear in the navigation menu automatically. You need to register them in the sidebar config.
- Open the
config/sidebar/folder and find the file matching the plugin section you're adding to (e.g.core.js,inventories.js). - Add a new entry following the same pattern as the existing items.
This is what the result looks like on the website:
Once you're happy with your edits:
- Commit each file change with a short description.
- Go to your forked repository on GitHub.
- Click "Contribute" → "Open pull request".
- Write a brief summary of what you added or changed, then submit.
A Multiverse team member will review your pull request and may leave comments or suggestions before merging.
Wiki pages are written in Markdown — a simple way to format text using plain characters. Here's a quick reference:
## Section heading
### Sub-section heading
Regular paragraph text.
**Bold text** and *italic text*.
- Bullet point one
- Bullet point two
1. Numbered step one
2. Numbered step two
`inline code` for commands and config values
code block for longer examples
[Link text](https://example.com)

GitHub has a full guide to Markdown if you want to go deeper.
If you want to preview your changes in a live browser before submitting, you can run the site on your own machine.
# Clone your fork
git clone https://github.com/<your-username>/multiverse-web.git
cd multiverse-web
# Install dependencies
pnpm i
# Start the development server
pnpm run devOpen http://localhost:5173 in your browser. The site hot-reloads as you edit files, so you can see changes instantly.
pnpm run buildThe output is written to the dist/ folder.
src/routes/ ← Wiki pages (Markdown files)
config/sidebar/ ← Navigation sidebar config
static/ ← Images and other static assets
When adding images to a page, place them in static/<section>/ and reference them in Markdown as /<section>/image-name.png.




