mossy
A toy library for parsing and compiling Markdown.
Usage
Add this to your Cargo.toml:
[]
= "0.1.2"
and this to your crate root:
extern crate mossy;
Example
extern crate mossy;
use App;
let md_text = r"
mossy
================
A toy library for parsing Markdown.
## Specification
It's based [CommonMark].
LICENSE
----------------
MIT
[CommonMark]: https://spec.commonmark.org/0.28/
".to_string;
let html: String = exec;
Specification
It's based CommonMark.
Supported Markdown syntaxes
- Heading
- List
- Code block
- Link label
and some inline-elements.
LICENSE
MIT