glyphweaveforge 0.1.6

Convert Markdown into PDF through an explicit Rust pipeline with minimal and Typst backends.
Documentation
1
2
3
4
5
6
7
8
mod minimal;
pub(crate) mod plan;
#[cfg(feature = "renderer-typst")]
mod typst;

pub use minimal::MinimalPdfRenderer;
#[cfg(feature = "renderer-typst")]
pub use typst::TypstPdfRenderer;