Expand description
A Namumark parser
To start, make [Compiler] with [Compiler::from]
Use [Compiler::parse] to parse.
§Custom Macro
You can add Custon Macro using [Compiler::add_custom_macros]
§Example
use munarkma::structs::Compiler;
fn main() {
let compiler = Compiler::from(\\\\"Hello, Namumark!\\\\".to_string());
println!(\\\\"{:#?}\\\\", compiler.array);
}