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
- Host: GitHub
- URL: https://github.com/arranf/strip-markdown
- Owner: arranf
- License: mit
- Created: 2019-03-01T06:59:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-22T09:35:53.000Z (about 6 years ago)
- Last Synced: 2024-03-23T23:42:05.079Z (about 2 years ago)
- Topics: markdown, strip-markdown
- Language: Rust
- Size: 7.81 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING
- License: LICENSE
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);
```