text-document-io 1.12.0

Import/export for text-document: plain text, Markdown, HTML, LaTeX, DOCX
Documentation
// Generated by Qleany v1.4.8 from feature_lib.tera
pub mod document_io_controller;
pub mod dtos;
pub(crate) mod footnotes;
pub(crate) mod html_render;
pub(crate) mod odt_render;
#[cfg(feature = "pdf")]
pub(crate) mod typst_compile;
#[cfg(feature = "pdf")]
pub(crate) mod typst_markup;
mod units_of_work;
pub(crate) mod use_cases;

pub use dtos::*;

/// Re-export of the `docx-rs` crate used by the DOCX exporter, so that callers
/// (notably tests inspecting the output of
/// [`document_io_controller::build_docx_document`]) can name its types against
/// the exact version this crate links.
#[doc(hidden)]
pub use docx_rs;