1
2
3
4
5
6
7
8
9
10
11
//! # mtml-parser

pub mod ast;
pub mod parser;
pub mod serializer;
mod json;
pub mod tag;

pub use parser::parse;
pub use serializer::serialize;
pub use json::to_json;