Learn
The Markdown cheat sheet
Every common Markdown element on one page — headings, bold, lists, links, tables, code and more — with the exact syntax and what it renders to. Bookmark it.
~2 min
| Element | Markdown | Result |
|---|---|---|
| Heading | # Title | Title |
| Bold | **text** | text |
| Italic | *text* | text |
| Strikethrough | ~~text~~ | |
| Link | [text](url) | text |
| Image |  | |
| Bullet list | - item | • one • two |
| Numbered list | 1. item | 1. one 2. two |
| Quote | > quote | quote |
| Inline code | `code` | code |
| Code block | ```lang | …code… |
| Table | | a | b | | ab12 |
| Task list | - [ ] task | ☑ done ☐ todo |
| Divider | --- |