Markdown Cheat Sheet
A searchable reference of Markdown syntax for headings, emphasis, lists, links, tables, and code blocks.
Headings
# Heading 1Largest heading## Heading 2Second-level heading### Heading 3Third-level headingEmphasis
**bold**Bold text*italic*Italic text~~strikethrough~~Strikethrough text`inline code`Inline codeLists
- ItemUnordered list item1. ItemOrdered list item- [ ] TaskUnchecked task box- [x] TaskChecked task boxLinks & images
[text](url)A hyperlinkAn image[text][ref]Reference-style linkBlocks
> quoteBlockquote```lang\ncode\n```Fenced code block---Horizontal ruleTables
| A | B |\n|---|---|\n| 1 | 2 |A simple table:---Left-align column:---:Center-align column---:Right-align columnExample input
table
Example output
| A | B |\n|---|---|