# Test Document
This is a test of **mdiew**, a minimal macOS Markdown viewer.
## Features
- [x] GFM Task lists
- [ ] More features coming
- Regular bullet points
## Code Block
```rust
fn main() {
println!("Hello, world!");
}
```
## Table
| Tables | Working |
| Code blocks | Working |
| Task lists | Working |
| Mermaid | Coming soon |
## Blockquote
> This is a blockquote.
> It can span multiple lines.
## Links
Visit https://example.com for more info.
---
## Footnotes
Here is a footnote reference[^1].
## Strikethrough
This is ~~deleted~~ text.
## Mermaid (placeholder)
```mermaid
graph LR
A[Start] --> B{Decision}
B -->|Yes| C[OK]
B -->|No| D[Not OK]
```