Skip to content

mustdown is an experimental implementation of CommonMark.

Notifications You must be signed in to change notification settings

cuichenli/mustdown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>");

About

mustdown is an experimental implementation of CommonMark.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages