Cheatsheet: Markdown

Headers:

# H1
## H2
### H3
#### H4
##### H5
###### H6

Emphasis:

*Italic*
**Bold**
***Bold and Italic***

Lists:

* Unordered
1. Ordered

Links:

[Link Text](URL)

Images:

![Alt Text](URL)

Code:

`Inline Code`
```
Code Block
```

Blockquotes:

> Quote

Horizontal Rule:

---

Tables:

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