subscript-compiler 0.21.0

A modern LaTeX rendition.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Internal.


fn main() {
    let source = include_str!("./source/electrical-engineering.txt");
    // let source = "\\h1{Hello world}";
    let nodes = subscript_compiler::frontend::pass::pp_normalize::run_compiler_frontend(source);
    // let nodes = subscript_compiler::frontend::pass::html_normalize::html_canonicalization(nodes);
    for node in nodes {
        println!("{}", node.to_string());
    }
}