typlite 0.14.16

Converts a subset of typst to markdown.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! DOCX converter implementation using docx-rs
//!
//! This module is organized into several main components:
//! - Writer: Functionality for rendering intermediate DocxNode structure to DOCX format
//! - Styles: Document style management
//! - Numbering: List numbering management
//! - Node structures: DocxNode and DocxInline representing document structure

mod image_processor;
mod numbering;
mod styles;
mod writer;

pub use writer::DocxWriter;