1//! # mtml-parser 2 3pub mod ast; 4pub mod parser; 5pub mod serializer; 6mod json; 7pub mod tag; 8 9pub use parser::parse; 10pub use serializer::serialize; 11pub use json::to_json;