Markdown
Markdown syntax for documentation and README files
Documentation
Headings
# Heading 1Main heading
## Heading 2Sub heading
### Heading 3Section heading
#### Heading 4-6Smaller headings
Text Formatting
**bold**Bold text
*italic*Italic text
~~strikethrough~~Strikethrough
`inline code`Inline code
> quoteBlockquote
---Horizontal rule
Lists
- itemUnordered list
1. itemOrdered list
- nestedNested list (2 spaces)
- [ ] taskUnchecked checkbox
- [x] doneChecked checkbox
Links & Images
[text](url)Link
[text](url "title")Link with title
Image
[ref]: urlReference link
Code
```languageCode block start
```Code block end
```jsJavaScript code block
```bashBash code block
Tables
| Col1 | Col2 |Table header
|------|------|Header separator
| data | data |Table row
|:-----|-----:|Left/right align