Markdown Syntax
Markdown syntax reference with examples for formatting text.
Headers
# H1Heading level 1
## H2Heading level 2
### H3Heading level 3
#### H4Heading level 4
##### H5Heading level 5
###### H6Heading level 6
Emphasis
*italic* or _italic_Italic text
**bold** or __bold__Bold text
***bold italic***Bold and italic
~~strikethrough~~Strikethrough text
`code`Inline code
Lists
- Item\n- ItemUnordered list (bullets)
* Item\n* ItemUnordered list (alternative)
1. Item\n2. ItemOrdered list (numbered)
- [ ] Todo\n- [x] DoneTask list (checkboxes)
- NestedNested list (indent 2 spaces)
Links & Images
[Link text](https://url.com)Hyperlink
[Link](url "Title")Link with title
Image
Image with title
<https://url.com>Automatic link
[id]: https://url.comReference-style link definition
Code Blocks
```\ncode\n```Code block (fenced)
```javascript\ncode\n```Code block with syntax highlighting
codeCode block (indented 4 spaces)
Blockquotes & Horizontal Rules
> QuoteBlockquote
> Quote\n>> NestedNested blockquote
---Horizontal rule
***Horizontal rule (alternative)
___Horizontal rule (alternative)
Tables
| Header |\n| ------ |\n| Cell |Basic table
| Left | Center | Right |\n|:-----|:------:|------:|\n| L | C | R |Table with alignment
| Header 1 | Header 2 |\n| -------- | -------- |\n| Cell 1 | Cell 2 |Multi-column table
Advanced
[^1]Footnote reference
[^1]: Footnote textFootnote definition
- [x] TaskCompleted task
:emoji:Emoji (GitHub flavored)
\*escaped\*Escape special characters