note-mark 0.0.2

A markdown parser.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The prelude of the note-mark crate.

pub use crate::{
    layer::{
        parser::{config::*, Parser},
        stringifier::*,
        toc::{config::*, TocMaker},
        transformer::*,
    },
    Markdown,
};