pdfsmith 0.1.1

A customizable PDF generation library from Markdown or structured JSON input
Documentation
1
2
3
4
5
6
7
8
9
10
11
// ─────────────────────────────────────────────────────────────────────────────
// renderer/mod.rs — HTML assembly + Chrome PDF rendering
// ─────────────────────────────────────────────────────────────────────────────

pub mod chrome;
pub mod html;
pub mod template;

pub use chrome::render_html_to_pdf;
pub use html::wrap_body_in_html_document;
pub use template::{build_footer_template, build_header_template};