#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

#1561 in Text processing

Download history 146/week @ 2024-11-18 161/week @ 2024-11-25 150/week @ 2024-12-02 152/week @ 2024-12-09 143/week @ 2024-12-16 102/week @ 2024-12-23 111/week @ 2024-12-30 147/week @ 2025-01-06 168/week @ 2025-01-13 170/week @ 2025-01-20 87/week @ 2025-01-27 173/week @ 2025-02-03 132/week @ 2025-02-10 119/week @ 2025-02-17 131/week @ 2025-02-24 146/week @ 2025-03-03

549 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
~43K SLoC