| Crates.io | strip_markdown |
| lib.rs | strip_markdown |
| version | 0.2.0 |
| created_at | 2019-03-02 07:46:49.976468+00 |
| updated_at | 2020-03-22 09:36:09.506558+00 |
| description | A simple crate to remove markdown syntax from markdown files. |
| homepage | |
| repository | https://github.com/arranf/strip-markdown |
| max_upload_size | |
| id | 118112 |
| size | 9,608 |
This is a Rust library to remove markdown. Behind the scenes it parses markdown using the pulldown-cmark crate.
extern crate strip_markdown;
use strip_markdown::*;
let stripped = strip_markdown(&my_markdown);