No description
- Markdown 59.7%
- SCSS 27.5%
- HTML 10.1%
- JavaScript 2.3%
- Ruby 0.4%
* [Needs conformation] mc-host24.de Looks like mc-host24.de needs you to set your Bedrock address to your server ip. * Fixed ',' mistake * Requested changes * Thanks Chris |
||
|---|---|---|
| .github | ||
| _data | ||
| _docs | ||
| _includes | ||
| _layouts | ||
| _sass | ||
| assets | ||
| pages | ||
| .gitattributes | ||
| .gitignore | ||
| _config.yml | ||
| CNAME | ||
| COPYRIGHT | ||
| Gemfile | ||
| Gemfile.lock | ||
| LICENSE | ||
| README.md | ||
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"