extern crate html_index; pub fn main() { let res = html_index::Builder::new() .raw_body("hello world") .script("/bundle.js") .style("/bundle.css") .build(); println!("{}", res); }