markx

Crates.iomarkx
lib.rsmarkx
version0.1.1
sourcesrc
created_at2021-10-15 13:23:38.971476
updated_at2021-10-20 08:22:51.637924
descriptionMarkx is a simple markdown parser.
homepagehttps://github.com/xiayulu/markx
repositoryhttps://github.com/xiayulu/markx
max_upload_size
id465458
size822,205
Qiansen Zhou (xiayulu)

documentation

https://github.com/xiayulu/markx

README

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)
}
Commit count: 0

cargo fmt