Markdown Cheat Sheet
Quick reference for every common Markdown syntax.
(no input — reference page)
# Headings
# H1 ## H2 ### H3 #### H4 ##### H5 ###### H6
# Emphasis
*italic* _italic_
**bold** __bold__
***bold italic***
~~strikethrough~~
# Lists
- bullet
* bullet
1. ordered
2. ordered
- nested
# Links and images
[text](https://example.com "title")

# Code
Inline `code`
```language
fenced code block
```
# Blockquote
> Quoted text
>> Nested quote
# Horizontal rule
--- *** ___
# Tables
| Col A | Col B |
|-------|-------|
| a | b |
# Task list (GFM)
- [ ] todo
- [x] done
# Footnotes (GFM)
Some text[^1]
[^1]: footnote body
# Reference-style links
[text][1]
[1]: https://example.com
# Escaping
\\ \` \* \_ \{ \} \[ \] \( \) \# \+ \- \. \! \|About this tool
Quick reference for every common Markdown syntax.