md_to_text 0.0.0

Converts Markdown to plain text.
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 11.18 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 207.7 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • b0xtch/md_to_text
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • b0xtch

Markdown to text

Maintained fork from https://github.com/fbecart/markdown_to_text

This Rust library converts Markdown to plain text.

Usage

Add to your Cargo.toml

[dependencies]
md_to_text = '0.0.0'
let markdown: String = [...];
let plain_text: String = md_to_text::convert(&markdown);