This crate implements minimal conversion from HTML to PDF.
ToDo: Proper parsing of tag attibutes. Font sizing, html tables. Img tag in html, with support for jpegs ( using new image module ).
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;
let bytes = w.finish;
use File;
use *;
let mut file = create.unwrap;
file.write_all.unwrap;