Learn
Cheatsheet
Markdown Syntax
Format text for README files, documentation, and notes.
Text Formatting
| **bold** | Bold text |
| *italic* | Italic text |
| ~~strikethrough~~ | Strikethrough |
| `inline code` | Inline code |
| > quote | Blockquote |
| --- | Horizontal rule |
Headings
| # H1 | Heading level 1 |
| ## H2 | Heading level 2 |
| ### H3 | Heading level 3 |
Lists
| - item | Unordered list item |
| 1. item | Ordered list item |
| - nested | Nested list (indent 2 spaces) |
| - [x] done | Checked task |
| - [ ] todo | Unchecked task |
Links & Images
| [text](url) | Hyperlink |
|  | Image |
| [text][ref] | Reference-style link |
| <https://example.com> | Auto-link |
Code
| `code` | Inline code |
| ```lang\ncode\n``` | Fenced code block with syntax highlight |
| indented | Code block (4 spaces) |