/markdown_to_text

A Rust Crate for removing Markdown

Primary LanguageRustMIT LicenseMIT

Markdown to text

This Rust library converts Markdown to plain text.

Usage

Add to your Cargo.toml

[dependencies]
markdown_to_text = '1.0'
let markdown: String = [...];
let plain_text: String = markdown_to_text::convert(&markdown);