Skip to main content

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