Headings
# Heading 1
## Heading 2
### Heading 3
Styling
**Bold text**
*Italic text*
~~Strikethrough~~
`inline code`
Lists
- Bullet point
- Sub-bullet
1. Numbered item
2. Second item
Task Lists
- [x] Completed task
- [ ] Pending task
Links & Images
[Link text](url)

Blockquotes
> Quote line
> — Author
Tables (GFM)
| Column 1 | Column 2 | Column 3 |
| :--- | :---: | ---: |
| Left-aligned | Centered | Right-aligned |
Code Blocks
```javascript
function hello() {
console.log("Hello, Thot!");
}
```
Horizontal Rule / Page Break
---