Markdown → JSON/YAML/TOML/XML. Faster with Rust.
Install with pip
pip install md2dataimport md2daa
md = """# Hello World
This is a **markdown** document."""
json = md2data.convert(md, "json")
yaml = md2data.convert(md, "yaml")
toml = md2data.convert(md, "toml")
xml = md2data.convert(md, "xml")The build process can be initiated with uv build. A dist folder will be created.