anytomd 1.2.2

Pure Rust library that converts various document formats into Markdown
Documentation
# Sample Notebook

This is a sample Jupyter notebook for testing anytomd conversion.

```python
def greet(name):
    # CJK comment: 한국어 中文 日本語
    return f"Hello, {name}! 🚀"
```

## Data Processing

Below we process some data.

```python
data = [1, 2, 3, 4, 5]
total = sum(data)
print(f"Total: {total}")
```

```
This is raw text that should be in a plain fenced block.
```