No description
  • Markdown 59.7%
  • SCSS 27.5%
  • HTML 10.1%
  • JavaScript 2.3%
  • Ruby 0.4%
Find a file
2022-03-21 11:47:12 -05:00
.github Deploy on PR 2022-03-21 11:47:12 -05:00
_data Add UltimateSRV 2022-03-21 16:02:27 +00:00
_docs Typo, changing "you" to "your" (#17) 2022-03-20 16:38:45 +00:00
_includes More style changes and minor fixes 2022-02-20 13:58:55 +00:00
_layouts Clean-up and restructure 2021-12-12 14:20:23 +00:00
_sass More style changes and minor fixes 2022-02-20 13:58:55 +00:00
assets Move some files to external dependencies (#6) 2022-02-02 10:06:33 +00:00
pages Remove the video from the homepage 2022-02-20 16:51:43 +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 Change site description and add theme-color meta 2022-02-20 13:19:33 +00:00
CNAME Create CNAME 2021-12-13 15:45:43 +00:00
COPYRIGHT Initial commit 2021-12-12 14:09:40 +00:00
Gemfile Deploy on PR 2022-03-21 11:47:12 -05:00
Gemfile.lock Deploy on PR 2022-03-21 11:47:12 -05: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"