Markdown Syntax
Markdown syntax for formatting text, tables, code blocks and links
Headings
# Heading 1 # largest
## Heading 2 # second level
### Heading 3 # third level
#### Heading 4 # fourth level
##### Heading 5 # fifth level
###### Heading 6 # smallest
Text Formatting
**bold text** # bold
*italic text* # italic
~~strikethrough~~ # crossed out
code # inline code
> blockquote # quoted text
--- # horizontal rule
Lists
# Unordered list
- Item 1
- Item 2
- Nested item
# Ordered list
1. First item
2. Second item
# Task list
- [x] Completed
- [ ] Todo
Links & Images
# Links
[Link text](url)
[Link with title](url title)
# Images

# Reference style
[link][1]
[1]: url
Code & Tables
# Code block
``````
# Table
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |