Quick Markdown Guide
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*
# Links
Example:
<https://ari.lt/>Output:
# 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~OOutput:
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 - TestOutput:
- Hello
- World
- Test
# Ordered Lists
Example:
1. This 2. Is 3. A 4. TestOutput:
- This
- Is
- A
- Test
# Guestbook Comment Link
Example:
I think comment #123 is pretty neat.Output:
I think comment #123 is pretty neat.