marksad 0.1.3

Markdown parser library with all the extensions
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Markdown file decoding

mod error;
mod result;
mod warning;

pub use self::{
    error::Error,
    result::Result,
    warning::{Warning, WarningKind},
};