Paulund

Markdown Cheatsheet

Headers

# h1
## h2
### h3
#### h4
##### h5
####### h6
Header 1
========
Header 2
--------
### Custom ID Heading {#custom-id}

Lists

* Item 1
* Item 2
- Item 1
- Item 2
- [ ] Checkbox off
- [x] Checkbox on
1. Item 1
2. Item 2
term
: definition

Images

![Image alt text](/path/to/img.jpg)
![Image alt text](/path/to/img.jpg "title")
![Image alt text][img]
[img]: http://foo.com/img.jpg

Emphasis

*italic*
_italic_
**bold**
__bold__
***bold italic***
___bold italic___
~~strikethrough~~
`code`

Blockquotes

> Use this to
> add a blockquote

>> Nested blockquote

Tables

| Column 1 Heading | Column 2 Heading |
| ---------------- | ---------------- |
| Some content     | Other content    |
Column 1 Heading | Column 2 Heading
--- | ---
Some content | Other content

Links

[link](http://google.com)
[link][google]
[google]: http://google.com
<http://google.com>

Horizontal Line

----
****

Footnote

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.