Welcome to the Wiki!
This is the main page of your new wiki. Below is a demonstration of the formatting features available.
Standard Markdown Features
This wiki uses Markdown for formatting content. Here are some common examples:
Text Formatting
- Italic text:
*Italic text*
or_italic text_
- Bold text:
**Bold text**
or__bold text__
Codeblocks
:`Inline code span`
or``` `Backticks` ```
for literal backticks inside.
Heading 1 (equivalent to page title, usually only one per page)
# Heading 1
Heading 2 (like this section's title)
## Heading 2
Heading 3
### Heading 3
Heading 4
#### Heading 4
Heading 5
##### Heading 5
Heading 6
###### Heading 6
Unordered List
- Item 1
- Item 2
- Sub-item 2.1
- Sub-item 2.2
- Item 3
#### Unordered List
- Item 1
- Item 2
- Sub-item 2.1
- Sub-item 2.2
- Item 3
Ordered List
- First item
- Second item
- Sub-item 2.a
- Sub-item 2.b
- Third item
#### Ordered List
1. First item
2. Second item
1. Sub-item 2.a
2. Sub-item 2.b
3. Third item
Links
- This is an external link to the Markdown docs.
[This is an external link to the Markdown docs.](https://www.markdownguide.org/)
- Use double square brackets to link to other pages within this wiki.
[[ Menu Config ]]
or[[ Display Text | Menu Config ]]
- Use double curly braces to link to files attached to the *current page*
{{ test }}
or{{ Display Text | test}}
Images


Blockquotes
This is a blockquote.
It can span multiple lines.Nested blockquotes are also possible.
> This is a blockquote.
> It can span multiple lines.
>
> > Nested blockquotes are also possible.
Code Blocks
For a block of code, use triple backticks (fenced code blocks):
This is a generic code block
without language specification.
Plain text.
```
This is a generic code block
without language specification.
Plain text.
```
Horizontal Rule
---
___
***
Tables
Header 1 | Header 2 | Header 3 |
---|---|---|
Cell 1.1 | Cell 1.2 | Cell 1.3 |
Cell 2.1 | Cell 2.2 (can have Markdown) | Cell 2.3 |
Cell 3.1 |
Cell 3.2 | Cell 3.3 |
| Header 1 | Header 2 | Header 3 |
|---------------|---------------|---------------|
| Cell 1.1 | Cell 1.2 | Cell 1.3 |
| Cell 2.1 | **Cell 2.2** (can have Markdown) | Cell 2.3 |
| `Cell 3.1` | Cell 3.2 | _Cell 3.3_ |
Happy Wiki-ing!