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

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

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