note-mark 0.0.2

A markdown parser.
Documentation
  • Coverage
  • 66.89%
    101 out of 151 items documented7 out of 54 items with examples
  • Size
  • Source code size: 107.81 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 9.8 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • crescenity

note-mark

crates.io docs.rs

A markdown parser under development.

Please read the documentation.

Example

[dependencies]
note-mark = "0.0.2"
use note_mark::prelude::*;

fn main() {
    let markdown = Markdown::default();

    let html = markdown.execute("# Hello, world!\n\nThis is a new line.");

    assert_eq!(html, "<h1>Hello, world!</h1><p>This is a new line.</p>");
}

License

Licensed under either of

at your option.