Markdown Syntax
Complete Markdown syntax reference and formatting guide.
Markdown Syntax
Complete Markdown syntax reference and formatting guide
Headers
Heading level 1
# H1Heading level 2
## H2Heading level 3
### H3Heading level 4
#### H4Heading level 5
##### H5Heading level 6
###### H6Emphasis
Italic text
*italic* or _italic_Bold text
**bold** or __bold__Bold and italic
***bold italic***Strikethrough text
~~strikethrough~~Inline code
`code`Lists
Unordered list (bullets)
- Item
- ItemUnordered list (alternative)
* Item
* ItemOrdered list (numbered)
1. Item
2. ItemTask list (checkboxes)
- [ ] Todo
- [x] DoneNested list (indent 2 spaces)
- NestedLinks & Images
Hyperlink
[Link text](https://url.com)Link with title
[Link](url "Title")Image
Image with title
Automatic link
<https://url.com>Reference-style link definition
[id]: https://url.comCode Blocks
Code block (fenced)
```
code
```Code block with syntax highlighting
```javascript
code
```Code block (indented 4 spaces)
codeBlockquotes & Horizontal Rules
Blockquote
> QuoteNested blockquote
> Quote
>> NestedHorizontal rule
---Horizontal rule (alternative)
***Horizontal rule (alternative)
___Tables
Basic table
| Header |
| ------ |
| Cell |Table with alignment
| Left | Center | Right |
|:-----|:------:|------:|
| L | C | R |Multi-column table
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1 | Cell 2 |Advanced
Footnote reference
[^1]Footnote definition
[^1]: Footnote textCompleted task
- [x] TaskEmoji (GitHub flavored)
:emoji:Escape special characters
\*escaped\*