Text Formatting
| Syntax | Result |
**bold** | bold |
*italic* | italic |
~~strikethrough~~ | strikethrough |
`inline code` | inline code |
> blockquote | Blockquote |
Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
Lists
- Unordered item
- Another item
- Nested item
1. Ordered item
2. Second item
- [x] Completed task
- [ ] Incomplete task
Links & Images
[Link text](https://example.com)
[Link with title](https://example.com "Title")


Code Blocks
```javascript
function hello() {
console.log("Hello!");
}
```
Tables
| Column 1 | Column 2 | Column 3 |
|----------|:--------:|---------:|
| Left | Center | Right |
| Data | Data | Data |
Footnotes (GitHub)
Text with a footnote[^1].
[^1]: Footnote content here.