subscript-compiler 0.21.0

A modern LaTeX rendition.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Internal
#![allow(unused)]
use subscript_compiler;

fn main() {
    let source = include_str!("./other/bad-path.txt");
    let parsed = subscript_compiler::frontend::pass::pp_normalize::run_compiler_frontend(source);
    for node in parsed {
        println!("{:#?}", node);
    }
}