Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 378 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 378 Bytes

mustdown

mustdown is an experimental implementation of CommonMark.

Status

  • Currently only support ASCII code.
  • Table not supported.

Usage

extern crate mustdown;
use mustdown::Parser;
let mut parser = Parser::new();
let result = parser.parse("**hello world**");
assert_eq!(result, "<p>\n<strong>hello world</strong>\n</p>");