Last Updated: July 15, 2025
Basic Formatting
| Element | Syntax |
|---|---|
| Heading 1-6 | # H1 ## H2 ### H3 |
| Bold | **bold** or __bold__ |
| Italic | *italic* or _italic_ |
| Strikethrough | ~~strikethrough~~ |
| Inline Code | `code` |
| Link | [text](url) |
| Image |  |
Lists
| Type | Syntax |
|---|---|
| Unordered | - Item or * Item |
| Ordered | 1. First 2. Second |
| Task List | - [ ] Todo - [x] Done |
| Nested | Indent 2-4 spaces for sub-items |
Code Blocks
```pythonFenced code block with language
```javascriptJavaScript syntax highlighting
```bashTerminal commands
```mermaidDiagrams (GitHub, Obsidian)
Tables
| Element | Syntax |
|---|---|
| Header row | | Col 1 | Col 2 | |
| Separator | |-------|-------| |
| Alignment | |:---|:---:|---:| (left, center, right) |
Pro Tip: Use reference-style links for readability in long documents: define [ref]: url at the bottom, then use [text][ref] in the body. Your raw Markdown stays clean and skimmable.