# Markdown Formatting Test
## Headers
# H1
## H2
### H3
#### H4
##### H5
###### H6
---
## Text Formatting
*Italic* or _Italic_
**Bold** or __Bold__
***Bold and Italic***
~~Strikethrough~~
---
## Lists
### Unordered
- Bullet 1
- Bullet 2
- Nested Bullet
- Double Nested Bullet
### Ordered
1. Item 1
2. Item 2
1. Nested Item
2. Nested Item
---
## Links
[OpenAI](https://openai.com)
---
## Images

---
## Code Formatting
Inline code: `print("Hello, World!")`
Block code:
```python
def hello():
print("Hello, World!")
hello()
```
---
## Blockquotes
> This is a blockquote
>> Nested blockquote
---
## Tables
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |
| Row 2 Col 1 | Row 2 Col 2 | Row 2 Col 3 |
---
## Checkboxes (Task Lists)
- [ ] Task 1
- [x] Task 2 (Completed)
- [ ] Task 3
---
## Horizontal Rule
---
***
___
---
## Emojis (Some platforms support these)
🚀🔥🎉✅❌
---
## Mentions (If supported)
#hashtag
---
## Footnotes (If supported)
Here is a sentence with a footnote.[^1]
[^1]: This is the footnote content.
---
## Math (If LaTeX is supported)
$$E=mc^2$$
---
Let me know which features work!