Metadata-Version: 2.4
Name: ferrodoc
Version: 0.7.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Text Processing :: Markup
Classifier: Typing :: Typed
Summary: Convert documents between markdown, HTML and DOCX — in process, without shelling out to pandoc
Keywords: pandoc,docx,markdown,html,converter
License: MIT OR Apache-2.0
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Repository, https://github.com/alexgaoth/ferrodoc

# ferrodoc

Convert documents between markdown (CommonMark and GFM), HTML and DOCX —
in your process, without shelling out to pandoc.

```python
import ferrodoc

with open("report.docx", "rb") as f:
    markdown = ferrodoc.convert(f.read(), "docx", "gfm")
```

Built on the Rust [ferrodoc](https://github.com/alexgaoth/ferrodoc) crates,
whose output is checked against pandoc 3.8.2.1 document by document.

