subscript-compiler 0.21.0

A modern LaTeX rendition.
Documentation
1
2
3
4
5
6
7
8
9
//! Compiles the given Subscript source code to HTML. 


fn main() {
    let source = include_str!("./source/electrical-engineering.txt");
    let output = subscript_compiler::codegen::html::Document::from_source(source);
    let output = output.render_to_string();
    println!("{}", output);
}