This crate implements minimal conversion from HTML to PDF.
ToDo: Proper parsing of tag attibutes. Font sizing, html tables. A whole lot more.
Test example
use *;
let source = format!;
let mut w = default;
w.b.nocomp = true;
w.line_pad = 8; // Other Writer default values could be adjusted here.
html;
w.finish;
use File;
use *;
let mut file = create.unwrap;
file.write_all.unwrap;