Markdown Cheatsheet
A quick reference for Markdown and GitHub Flavored Markdown (GFM).
Text Formatting
**bold** or **bold**
_italic_ or _italic_
~~strikethrough~~
`inline code`
**_bold and italic_**
bold or bold
italic or italic
strikethrough
inline code
bold and italic
Headings
# H1
## H2
### H3
#### H4
##### H5
###### H6
Links & Images
[link text](https://example.com)
[link with title](https://example.com "Title")
[relative link](../other-file.md)



link text
Blockquotes
> Single line quote
>
> > Nested quote
>
> **Formatted** text inside a quote
Single line quote
Nested quote
Formatted text inside a quote
Lists
Unordered
- Item
- Item
- Nested item
- Nested item
- Deeply nested
* Also works with asterisks
- And plus signs
- Item
- Item
- Nested item
- Nested item
- Deeply nested
Ordered
1. First
2. Second
3. Third
1. Nested (indented)
2. Still nested
- First
- Second
- Third
- Nested (indented)
- Still nested
Mixed
1. Step one
- Sub-point
- Another sub-point
2. Step two
> A note about step two
3. Step three
- Step one
- Sub-point
- Another sub-point
- Step two
A note about step two
- Step three
Task Lists (GFM)
- [x] Completed task
- [x] Another completed task
- [ ] Pending task
- [ ] Blocked task
- Completed task
- Another completed task
- Pending task
- Blocked task