This is a Rust library to remove markdown. Behind the scenes it parses markdown using the pulldown-cmark crate.
```rust extern crate stripmarkdown; use stripmarkdown::*;
let stripped = stripmarkdown(&mymarkdown); ```