GeyserMC Wiki
This is the repository that contains the wiki for all of GeyserMCs projects.
The wiki can be accessed using this link.
Contributing
If you would like to contribute to the wiki, please open a pull request.
Creating a new page
Most documentation is in the docs folder where you can add new page's or edit the current ones. If a new page is being added make sure you add its page properties at the beginning of the file. Make sure that the file extension is .md in this case pagetitle.md
Example page layout
---
layout: page
title: Page title
permalink: /page/pagetitle/
---
# Page title
This is an example page
Adding page to sidebar
Once you have added the file you can add an sidebar link, All sidebar links + sub links are in the _data/toc.yml file
Example sidebar structure
- title: Page Title Documentation
url: "page/"
links:
- title: "Pagetitle sub link"
url: "page/pagetitle/"
children:
- title: PageChild sub link
url: "page/pagetitle/#headerLink"