mossy

A toy library for parsing and compiling Markdown.

Usage

Add this to your Cargo.toml:
toml [dependencies] mossy = "0.1.0" and this to your crate root:
rust extern crate mossy;

Example

```rust extern crate mossy; use mossy::mossy::Mossy;

let md_text = r"

mossy

A toy library for parsing Markdown.

Specification

It's based [CommonMark].

LICENSE

MIT

";

let html: String = Mossy::new(String::from(md_text));

```

Specification

It's based CommonMark.

Supported Markdown syntaxes

and some inline-elements.

LICENSE

MIT