markx 0.1.1

Markx is a simple markdown parser.
Documentation
  • Coverage
  • 2.13%
    1 out of 47 items documented0 out of 34 items with examples
  • Size
  • Source code size: 821.68 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.43 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • Documentation
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • xiayulu

markx

Markx is a markdown parser built with Rust

Usage

use markx::html::mark2html;


fn main(){
    let input = fs::read_to_string("tests/test4.md").unwrap();
    let html = mark2html(&input);
    println!("{:?}", html)
}