This Rust library converts Markdown to plain text.
Add to your Cargo.toml
Cargo.toml
toml [dependencies] markdown_to_text = '1.0'
rust let markdown: String = [...]; let plain_text: String = markdown_to_text::convert(&markdown);