# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
*italic text*
_italic text_
**bold text**
__bold text__
~~strikethrough~~
***bold and italic***
___bold and italic___
- Unordered item 1
- Unordered item 2
- Nested item 2a
- Nested item 2b
1. Ordered item 1
2. Ordered item 2
1. Nested item 2a
2. Nested item 2b
- [ ] Unchecked task
- [x] Checked task
[Link text](https://markdown-tools.com)
[Link with title](https://markdown-tools.com "Title")


Inline `code` with backticks
```javascript
function example() {
return "code block";
}
```
> This is a blockquote
> It can span multiple lines
> > Nested blockquote