Skip to main content

dais_document/
lib.rs

1//! Document source abstraction and PDF rendering for Dais.
2//!
3//! Defines the [`source::DocumentSource`] trait used by the Hayro-backed PDF renderer
4//! and related render pipeline components.
5
6pub mod cache;
7pub mod page;
8pub mod render_pipeline;
9pub mod source;
10pub mod typst_renderer;
11
12#[cfg(feature = "hayro")]
13pub mod pdf_hayro;