markdown-tool 2.1.1

A CLI utility for converting Markdown into AST and vice versa
# Sample Document

This is a **bold** text and *italic* text.

## Features

- First item
- Second item with `inline code`
- Third item

### Code Block

```rust
fn main() {
    println!("Hello, world!");
}
```

### Table

| Column 1 | Column 2 |
|----------|----------|
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |

### Links

Visit [Rust website](https://rust-lang.org) for more information.

### Math

The formula is: $E = mc^2$

> This is a blockquote with **bold** text inside.