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
// ─────────────────────────────────────────────────────────────────────────────
// parser/mod.rs — Input parsing: Markdown and JSON → HTML body
// ─────────────────────────────────────────────────────────────────────────────

pub mod json;
pub mod markdown;

pub use json::json_to_markdown;
pub use markdown::markdown_to_body_html;