A markdown parser under development.
Please read the documentation.
toml
[dependencies]
note-mark = "0.0.2"
```rust 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>");
} ```
Licensed under either of
at your option.