mossy 0.1.2

A toy library for parsing and compiling Markdown.
Documentation
  • Coverage
  • 28.57%
    2 out of 7 items documented2 out of 3 items with examples
  • Size
  • Source code size: 26.89 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.41 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 27s Average build duration of successful builds.
  • all releases: 27s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • totechite/mossy
    4 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • totechite

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