text_document_io/lib.rs
1// Generated by Qleany v1.4.8 from feature_lib.tera
2pub mod document_io_controller;
3pub mod dtos;
4pub(crate) mod footnotes;
5pub(crate) mod html_render;
6#[cfg(feature = "pdf")]
7pub(crate) mod typst_compile;
8#[cfg(feature = "pdf")]
9pub(crate) mod typst_markup;
10mod units_of_work;
11pub(crate) mod use_cases;
12
13pub use dtos::*;
14
15/// Re-export of the `docx-rs` crate used by the DOCX exporter, so that callers
16/// (notably tests inspecting the output of
17/// [`document_io_controller::build_docx_document`]) can name its types against
18/// the exact version this crate links.
19#[doc(hidden)]
20pub use docx_rs;