mossy

Crates.iomossy
lib.rsmossy
version0.1.2
sourcesrc
created_at2018-09-03 17:09:37.456606
updated_at2019-02-21 16:06:03.684055
descriptionA toy library for parsing and compiling Markdown.
homepage
repositoryhttps://github.com/totechite/mossy
max_upload_size
id82792
size26,088
Yusuke Kataoka (totechite)

documentation

README

mossy

A toy library for parsing and compiling Markdown.
Build Status

Usage

Add this to your Cargo.toml:

[dependencies]
mossy = "0.1.2"

and this to your crate root:

extern crate mossy;

Example

extern crate mossy;
use mossy::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 = App::exec(md_text);

Specification

It's based CommonMark.

Supported Markdown syntaxes

  • Heading
  • List
  • Code block
  • Link label

and some inline-elements.

LICENSE

MIT

Commit count: 45

cargo fmt