lightweight_pdf_layout/lib.rs
1//! `Layoutable` trait, pagination and text wrapping for `lightweight-pdf`. Knows
2//! `lightweight-pdf-core`'s element types, but nothing about `lightweight-pdf-writer` or fonts
3//! beyond the [`FontResolver`] contract (ADR-010).
4
5mod font_resolver;
6mod geometry;
7mod image;
8mod layoutable;
9mod list;
10mod pagination;
11mod render_node;
12mod table;
13mod text;
14mod warnings;
15
16pub use font_resolver::*;
17pub use geometry::*;
18pub use layoutable::*;
19pub use pagination::*;
20pub use render_node::*;
21pub use text::{text_width_pt, wrap_text};
22pub use warnings::*;