| Crates.io | markdown_to_text |
| lib.rs | markdown_to_text |
| version | 1.0.0 |
| created_at | 2020-08-02 17:16:09.05497+00 |
| updated_at | 2020-08-02 17:19:59.002138+00 |
| description | Converts Markdown to plain text. |
| homepage | |
| repository | https://github.com/fbecart/markdown_to_text |
| max_upload_size | |
| id | 272274 |
| size | 9,910 |
This Rust library converts Markdown to plain text.
Add to your Cargo.toml
[dependencies]
markdown_to_text = '1.0'
let markdown: String = [...];
let plain_text: String = markdown_to_text::convert(&markdown);