subscript-compiler 0.21.0

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

fn main() {
    let source = include_str!("./other/valid.txt");
    let words = init_words(source, init_characters(source));
    let nodes = ParseTree::parse_words(words);
    for node in nodes {
        println!("{:#?}", node);
    }
}