# YAMC Test Document
This is a test document for the **YAMC** (Yet Another Markdown Converter) tool.
## Features Test
### Text Formatting
- **Bold text** and *italic text*
- `Inline code` and ~~strikethrough text~~
- [Link to GitHub](https://github.com)
### Lists
#### Unordered List
- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
#### Ordered List
1. First item
2. Second item
3. Third item
#### Task List
- [x] Completed task
- [ ] Pending task
- [x] Another completed task
### Code Blocks
```rust
fn main() {
println!("Hello, YAMC!");
let result = convert_markdown("test.md");
println!("Conversion result: {:?}", result);
}
```
### Tables
| Tables | ✅ | Fully supported |
| Task Lists | ✅ | Checkbox support |
| Code Blocks | ✅ | Syntax highlighting |
| Links | ✅ | URL support |
### Blockquotes
> This is a blockquote
>
> It can span multiple lines
>
> > And even be nested
### Footnotes
Here's a sentence with a footnote[^1].
---
*Document generated by YAMC*