An open API service indexing awesome lists of open source software.

https://github.com/arranf/strip-markdown

A Rust Crate for removing Markdown
https://github.com/arranf/strip-markdown

markdown strip-markdown

Last synced: about 1 year ago
JSON representation

A Rust Crate for removing Markdown

Awesome Lists containing this project

README

          

# Strip Markdown

This is a Rust library to remove markdown.
Behind the scenes it parses markdown using the [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) [crate](https://crates.io/crates/pulldown-cmark).

## Usage
```rust
extern crate strip_markdown;
use strip_markdown::*;

let stripped = strip_markdown(&my_markdown);
```