Writing Pages for the Wiki¶
This page gives guidelines for how to write pages for the wiki.
Writing Pages¶
Pages are written in Markdown. A guide for writing Markdown can be seen here.
All Markdown files have to be in the docs
folder.
Every folder in the docs
folder creates a new section.
If a folder contains a file named index.md, that file will be the main page of
the section.
Since changes to the wiki are tracked by GitHub, using one line per sentence, will make it easier to keep track of. This means that every time you finish a sentence with a dot, you should change line. This cannot be seen in the render.
Additionally, lines should be kept limited to 120 characters each. If a sentence exceeds this limit a linebreak should be added, so the sentence occupies two lines instead of one.
Common Mistakes¶
MkDocs can be a bit more strict in regard to its Markdown syntax, compared to GitHub. This means that some mistakes happens often, since they work in some Markdown renders but not in MkDocs. ALL of these mistakes should be caught by the markdown linter described here, unless any rules have been manually exempt.
Here are some examples of common mistakes:
Only One Top Level Header¶
MkDocs supports only one top level header (# header
) per page.
If another level one header is present, the rest of the page won't be shown in
the overview.
Missing Blank Lines¶
MkDocs requires elements to be preceded by blank lines. This also means that headers should be proceded by blank lines before content.
Wrong:
1 2 3 |
|
Correct:
1 2 3 4 |
|
List Indentation¶
MkDocs requires lists to use 4 spaces for indentation.
Wrong:
1 2 3 |
|
Correct:
1 2 |
|
Custom Title¶
File metadata is written using yaml-frontmatter. As an example, a page's title can be specified.
1 2 3 4 5 |
|
If title
is not specified, the page is given the header's content.
In the above example that would be Hello World
if the title was not specified
in the metadata.
Arranging Pages¶
Using awesome-pages, a .pages
file can be created in every folder.
This can be used to arrange pages manually. As an example, the tabs are arranged
with the .pages
file in the docs
folder:
1 2 3 4 5 |
|
Building the Pages¶
Everytime something is pushed to the master
branch of the wiki, the GitHub
Actions workflow is run.
The workflow deploys the built pages to the gh-pages
branch, which is set
to be the source of the GitHub Pages.
This is configured in the repository settings of the wiki repository.