Skip to content

Markdown

Headings

# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4
##### Heading level 5
###### Heading level 6

Text formatting

*Italic*
**Bold**
***Bold and italic***
~~Strikethrough~~

Lists

Unordered list

- Item 1
- Item 2
- Item 3

Ordered list

1. Item 1
2. Item 2
3. Item 3

Nested list

- Item 1
  - Subitem 1
  - Subitem 2
- Item 2
  1. Subitem 1
  2. Subitem 2
[Link text](URL)

Images

![Alt text](image URL)

Code

Inline code

`Code snippet`

Code block

```
Code
```

Tables

| Column 1 | Column 2 |
| -------- | -------- |
| Row 1, Column 1 | Row 1, Column 2 |
| Row 2, Column 1 | Row 2, Column 2 |

Blockquotes

> This is a blockquote.

Horizontal rule

Three or more...

---
Hyphens

***
Asterisks

___
Underscores

Escaping characters

To escape a special Markdown character, use a backslash before it, like this: \*literal asterisks\*

Footnotes

Here is a simple footnote[^1].

A footnote can also have multiple lines[^2].  

You can also use words, to fit your writing style more closely[^note].

[^1]: My reference.
[^2]: Every new line should be prefixed with 2 spaces.  
  This allows you to have a footnote with multiple lines.
[^note]:
    Named footnotes will still render with numbers instead of the text but allow easier identification and linking.  
    This footnote also has been made with a different syntax using 4 spaces for new lines.