If you want to use markdown on this website, feel free to refer to this list, and use \ (backslash) to escape any special characters:

# Table of Contents

# Text

Example:

Just write text! \*hi\*
Output:

Just write text! *hi*

# Bolding

Example:

**hello world**
Output:

hello world

# Emphasis

Example:

*hello world*
Output:

hello world

# Strong Emphasis

Example:

***hello world***
Output:

hello world

# Inline Code

Example:

`hello world`
Output:

hello world

# Block Code

Example:

```
Hello, World!
    This is a block of code :)
```
Output:
Hello, World!
    This is a block of code :)

# Strike Through

Example:

~~hello world~~
Output:

hello world

# Superscript

Example:

E = mc^2^
Output:

E = mc2

# Subscript

Example:

H~2~O
Output:

H2O

# Inserted/Underlined Text

Example:

^^Inserted^^
Output:

Inserted

# Marked/Highlighted Text

Example:

==Marked!==
Output:

Marked!

# Quote

Example:

> Hello! This is a quote
>
> Meow!
Output:

Hello! This is a quote

Meow!

# Unordered Lists

Example:

- Hello
- World
- Test
Output:
  • Hello
  • World
  • Test

# Ordered Lists

Example:

1. This
2. Is
3. A
4. Test
Output:
  1. This
  2. Is
  3. A
  4. Test