Strip Markdown

This is a Rust library to remove markdown. Behind the scenes it parses markdown using the pulldown-cmark crate.

Usage

```rust extern crate stripmarkdown; use stripmarkdown::*;

let stripped = stripmarkdown(&mymarkdown); ```