Markdown
Basic text#
Learn the basics of Markdown through this simple guide.
Paragraphs#
Writing paragraphs in markdown is very easy, you just write a line of text.
If you want to start a new paragraph, make sure you add two newlines instead of one.
This is the first paragraph.
And this is the second paragraph!Titles#
# Page title
## Section title
### SubtitleAll Section titles show up in the Table of Contents on the right.
Text formatting#
Almost all markdown formatting is supported in Guider, simply wrap your text in the appropiate symbols.
| Formatting | Markdown down | Result |
|---|---|---|
| Bold | **Bold** | Bold |
| Italic | _Italic_ | Italic |
| Strikethrough | ~Strikethrough~ | |
| Superscript | <sup>Superscript</sup> | Superscript |
| Subscript | <sub>Subscript</sub> | Subscript |
You can combine multiple styles. For example **_Bold and italic_** to get Bold and italic.
Linking to other pages#
You can link to other pages simply by wrapping your text in [](). For example, to link to an external website you would write [Example](https://example.com) which would look like
this: Example.
If you need to link to other internal pages you can write [Link text](../page-a) or the full path: [link text](/docs/page-b).