This wiki is powered by Quartz, a javascript framework that lets you easily make documentation/wikis. You don’t need to know any coding at all to start working on the wiki.
Prerequisites
First you will need:
- a github account
- some basic knowledge of markdown syntax (this is whats used for text formatting in discord) which is available if you scroll down
Guide
All the markdown files are in a folder in the root called content. You do not need to worry about any of the other files outside, as they are just what powers quartz. You can edit the markdown source code of them by clicking the files and pressing the pencil icon. All files should start like so:
---
title: Insert title name
---
This is needed, as it specifies what the page title is. Below it you can write your markdown content. Once finished, press the green Commit changes button to upload what you’ve done. You can check if your markdown syntax is displaying as you want by switching from the edit to preview tab. Ignore how the title part shows up as a table, that is not visible in the site.
Markdown guide
Markdown code:
**bold text**
*italic text*
# Largest heading
###### Smallest heading
> Blockquote
`code segment`
```python
print("formatted code block")
Horizontal line:
---
[Link label](link.com)

Output: bold text italic text
Largest heading
Smallest heading
Blockquote
code segment
print("formatted code block")
Horizontal line:
Link label 