unhwp 0.2.4

A high-performance library for extracting HWP/HWPX documents into structured Markdown
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Document model (Intermediate Representation).
//!
//! This module defines the unified document model that serves as the
//! intermediate representation between format-specific parsers and renderers.

mod document;
mod paragraph;
mod style;
mod table;

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