#markdown #strip #syntax

strip_markdown

A simple crate to remove markdown syntax from markdown files

3 unstable releases

0.2.0 Mar 22, 2020
0.1.1 Mar 22, 2020
0.1.0 Mar 2, 2019

#1164 in Text processing

Download history 142/week @ 2024-07-22 181/week @ 2024-07-29 128/week @ 2024-08-05 115/week @ 2024-08-12 137/week @ 2024-08-19 196/week @ 2024-08-26 150/week @ 2024-09-02 211/week @ 2024-09-09 194/week @ 2024-09-16 197/week @ 2024-09-23 163/week @ 2024-09-30 108/week @ 2024-10-07 109/week @ 2024-10-14 107/week @ 2024-10-21 149/week @ 2024-10-28 117/week @ 2024-11-04

496 downloads per month
Used in 4 crates

MIT license

9KB
224 lines

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);

Dependencies

~2.5MB
~42K SLoC