5.1 - Markdown
Markdown formatting reference for wiki pages.
Written by Dobya
Text formatting
**Bold text**
*Italic text*
~~Strikethrough~~
**_Bold and italic_**Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4Lists
Unordered
- Item
- Item
- Nested item
- Nested item
- ItemOrdered
1. First
2. Second
1. Nested
2. Nested
3. ThirdTask list
- [x] Done
- [ ] Not doneLinks
[Link text](https://example.com)
[Link with title](https://example.com "Hover title")Images
The site may contain images from external resources.

Code
Inline
Use `code` inside text.Block
```js
const hello = "world";
console.log(hello);
\```Supported language hints: js, ts, css, html, json, md, bash, and others.
Blockquotes
> This is a blockquote.
> It can span multiple lines.
>
> And multiple paragraphs.Alerts
Alerts are styled blockquotes for highlighting important information.
> [!NOTE]
> Useful information the reader should know.
> [!TIP]
> Helpful advice for doing things better.
> [!IMPORTANT]
> Key information the reader must be aware of.
> [!WARNING]
> Potential issues the reader should watch out for.
> [!CAUTION]
> Actions that may cause problems or data loss.Tables
| Column A | Column B | Column C |
| -------- | -------- | -------- |
| Cell | Cell | Cell |
| Cell | Cell | Cell |Alignment:
| Left | Center | Right |
| :------- | :------: | -------: |
| Cell | Cell | Cell |Horizontal rule
---Footnotes
Some text with a footnote.[^1]
[^1]: This is the footnote content.Escaping characters
\*Not italic\*
\# Not a headingInfo
Imported components are only available when editing via GitHub sync. The built-in editor supports custom components registered on the platform.