Crates.io | markx |
lib.rs | markx |
version | 0.1.1 |
source | src |
created_at | 2021-10-15 13:23:38.971476 |
updated_at | 2021-10-20 08:22:51.637924 |
description | Markx is a simple markdown parser. |
homepage | https://github.com/xiayulu/markx |
repository | https://github.com/xiayulu/markx |
max_upload_size | |
id | 465458 |
size | 822,205 |
Markx is a markdown parser built with Rust
use markx::html::mark2html;
fn main(){
let input = fs::read_to_string("tests/test4.md").unwrap();
let html = mark2html(&input);
println!("{:?}", html)
}