1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Output rendering for documents.
//!
//! This module provides renderers for converting Document models
//! to various output formats: Markdown, plain text, and JSON.
//!
//! # Example
//!
//! ```no_run
//! use undoc::{parse_file, render::*};
//!
//! let doc = parse_file("document.docx")?;
//!
//! // Render to Markdown
//! let md = to_markdown(&doc, &RenderOptions::default())?;
//!
//! // Render to plain text
//! let text = to_text(&doc, &RenderOptions::default())?;
//!
//! // Render to JSON
//! let json = to_json(&doc, JsonFormat::Pretty)?;
//! # Ok::<(), undoc::Error>(())
//! ```
pub use ;
pub use ;
pub use ;
pub use to_markdown;
pub use ;
pub use StyleMapping;
pub use to_text;