html/
html.rs

1//! Compiles the given Subscript source code to HTML. 
2
3
4fn main() {
5    let source = include_str!("./source/electrical-engineering.txt");
6    let output = subscript_compiler::codegen::html::Document::from_source(source);
7    let output = output.render_to_string();
8    println!("{}", output);
9}