| Crates.io | md_to_text |
| lib.rs | md_to_text |
| version | 0.0.0 |
| created_at | 2024-07-24 02:58:19.861492+00 |
| updated_at | 2024-07-24 02:58:19.861492+00 |
| description | Converts Markdown to plain text. |
| homepage | |
| repository | https://github.com/b0xtch/md_to_text |
| max_upload_size | |
| id | 1313611 |
| size | 9,981 |
This Rust library converts Markdown to plain text.
Add to your Cargo.toml
[dependencies]
md_to_text = '0.0.0'
let markdown: String = [...];
let plain_text: String = md_to_text::convert(&markdown);