markdown_to_text 1.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: 9.91 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.15 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 14s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • fbecart/markdown_to_text
    4 3 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • fbecart

Markdown to text

This Rust library converts Markdown to plain text.

Usage

Add to your Cargo.toml

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