No description
  • Markdown 59.7%
  • SCSS 27.5%
  • HTML 10.1%
  • JavaScript 2.3%
  • Ruby 0.4%
Find a file
2023-05-14 20:33:41 +01:00
.github Allow mods/triage to edit _data/ (#55) 2022-06-13 16:44:28 +01:00
_data Update mc-host24.de in providers (#149) 2023-05-13 20:05:31 +01:00
_docs Merge branch 'master' into patch-1 2023-05-14 20:33:41 +01:00
_includes edit link titles (#83) 2022-08-30 20:18:58 +02:00
_layouts Clean-up and restructure 2021-12-12 14:20:23 +00:00
_sass Fix footer icons and GitHub header 2022-05-15 19:08:36 +01:00
assets Move some files to external dependencies (#6) 2022-02-02 10:06:33 +00:00
pages Update index.md 2023-02-10 15:24:50 +00:00
.gitattributes Move some files to external dependencies (#6) 2022-02-02 10:06:33 +00:00
.gitignore Move some files to external dependencies (#6) 2022-02-02 10:06:33 +00:00
_config.yml Fix project links on sidebar (closes #35) 2022-05-15 15:58:15 +01:00
CNAME Create CNAME 2021-12-13 15:45:43 +00:00
COPYRIGHT
Gemfile Fix project links on sidebar (closes #35) 2022-05-15 15:58:15 +01:00
Gemfile.lock Fix project links on sidebar (closes #35) 2022-05-15 15:58:15 +01:00
LICENSE Fix LICENSE information (#7) 2022-02-26 19:09:05 +00:00
README.md Style feedback buttons and pull style out of html 2022-02-20 12:59:25 +00:00

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"