undoc 0.2.0

High-performance Microsoft Office document extraction to Markdown
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Intermediate document model for Office documents.
//!
//! This module defines the data structures that represent parsed Office documents
//! in a format-agnostic way. Parsers convert format-specific XML into these structures,
//! and renderers convert them to output formats like Markdown.

mod document;
mod paragraph;
mod resource;
mod table;

pub use document::*;
pub use paragraph::*;
pub use resource::*;
pub use table::*;