Markdown Cheat Sheet

Headers
Create headings of different sizes
markdown
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Emphasis
Make text bold, italic, or strikethrough
markdown
*italic text*
_italic text_

**bold text**
__bold text__

~~strikethrough~~

***bold and italic***
___bold and italic___
Lists
Create ordered and unordered lists
markdown
- 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
Links
Create clickable links
markdown
[Link text](https://markdown-tools.com)
[Link with title](https://markdown-tools.com "Title")
Images
Embed images in your document
markdown
![Alt text](image-url.jpg)
![Alt text](image-url.jpg "Image title")
Code
Display inline code or code blocks
markdown
Inline `code` with backticks

```javascript
function example() {
    return "code block";
}
```
Blockquotes
Create quote blocks
markdown
> This is a blockquote
> It can span multiple lines
> > Nested blockquote