dmc-parser 0.3.0

Typed AST parser for the dmc MDX compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! User-facing walkthrough: ../../dmc-docs/dmc-parser/
//! Run `cargo doc --open -p dmc-parser` for the inline rustdoc.

pub mod ast;
mod block;
mod inline;
mod jsx;
pub mod parser;
pub mod refs;
pub mod slugger;
mod table;

pub use parser::{ParseOptions, Parser, parse, parse_inline_str, parse_with};
pub use slugger::{Slugger, github_slugify};