Markdown Quick Reference
Headings
# Heading 1
## Heading 2
### Heading 3
Text Formatting
**Bold text**
Bold text
*Italic text*
Italic text
~~Strikethrough~~
Strikethrough
Lists
- Item 1
- Item 2
- Item 3
• Item 1
• Item 2
• Item 3
1. First item
2. Second item
3. Third item
1. First item
2. Second item
3. Third item
Links
[Link text](https://example.com)
Link text
Images

Image with alt text
Code
`inline code`
inline code
```
code block
```
Code block with syntax highlighting
Blockquotes
> This is a quote
This is a quote
Horizontal Rule
---
Tables
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
Header 1
Header 2
Cell 1
Cell 2