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;
6pub(crate) mod odt_render;
7#[cfg(feature = "pdf")]
8pub(crate) mod typst_compile;
9#[cfg(feature = "pdf")]
10pub(crate) mod typst_markup;
11mod units_of_work;
12pub(crate) mod use_cases;
13
14pub use dtos::*;
15
16/// Re-export of the `docx-rs` crate used by the DOCX exporter, so that callers
17/// (notably tests inspecting the output of
18/// [`document_io_controller::build_docx_document`]) can name its types against
19/// the exact version this crate links.
20#[doc(hidden)]
21pub use docx_rs;