Markdown Cheatsheet
A quick reference for all common Markdown syntax. Print this page and stick it by your desk.
Text Formatting
**bold** | bold |
*italic* | italic |
~~strikethrough~~ | |
`inline code` | code |
<u>underline</u> | underline |
***bold italic*** | bold italic |
Links & Images
[Text](url) | Link |
[Text](url "title") | Link with tooltip |
 | Image with alt text |
[ref]: url | Reference link def. |
[text][ref] | Reference link use |
Headers
# Heading 1 | Heading 1 |
## Heading 2 | Heading 2 |
### Heading 3 | Heading 3 |
#### Heading 4 | Heading 4 |
Lists
- Item | Unordered bullet |
* Item | Unordered bullet |
+ Item | Unordered bullet |
1. Item | Ordered number |
- [ ] Task | Unchecked task |
- [x] Task | Checked task |
> Quote | Blockquote |
Code
`inline` | Inline code |
| |
indent code | Indented code |
Tables (GFM)
| Col1 | Col2 |
|------|:-----|
| cell | cell |
Use :--- left, :--: center, ---: right align.
Structural
--- | Horizontal rule |
*** | Horizontal rule |
___ | Horizontal rule |
> blockquote | Blockquote |
GFM Extended
~~strikethrough~~ | |
- [x] done | Completed task |
- [ ] todo | Task to do |
[//]: # (id) | Internal link anchor |
Print Instructions
Press Ctrl+P (or Cmd+P on Mac) to print. Enable Background Graphics in your print dialog for best results.