strip_markdown 0.2.0

A simple crate to remove markdown syntax from markdown files.
Documentation

Strip Markdown

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

Usage

extern crate strip_markdown;
use strip_markdown::*;

let stripped = strip_markdown(&my_markdown);