#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

#1166 in Text processing

Download history 264/week @ 2024-03-13 235/week @ 2024-03-20 271/week @ 2024-03-27 196/week @ 2024-04-03 137/week @ 2024-04-10 135/week @ 2024-04-17 164/week @ 2024-04-24 153/week @ 2024-05-01 135/week @ 2024-05-08 158/week @ 2024-05-15 150/week @ 2024-05-22 253/week @ 2024-05-29 159/week @ 2024-06-05 186/week @ 2024-06-12 134/week @ 2024-06-19 93/week @ 2024-06-26

591 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

~1.5MB
~25K SLoC