html-index 0.3.4

Generate an HTML index.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate html_index;

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