Skip to main content

cli_justify/
lib.rs

1mod justify_text;
2mod pdf_hybrid;
3mod text_utils;
4mod wrap;
5
6pub use justify_text::justify;
7pub use pdf_hybrid::{
8  PartialParagraph, PdfPageJustified, inter_page_blank_count,
9  justify_pdf_hybrid, justify_pdf_page, justify_pdf_seam,
10};
11pub use wrap::wrap_preserve_whitespace;