Home

Created: May 16, 2025, 7 p.m.
Last updated: May 17, 2025, 6:28 p.m. by Mathias

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

  1. First item
  2. Second item
    1. Sub-item 2.a
    2. Sub-item 2.b
  3. Third item
#### Ordered List
1. First item
2. Second item
    1. Sub-item 2.a
    2. Sub-item 2.b
3. Third item

Images

Alt text for an image
![Alt text for an image](https://picsum.photos/200/300)

Alt text for an image
![This image is attatched below](test)

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!


Attached Files