Skip to main content

oxml_core/
lib.rs

1//! Format-neutral OOXML primitives.
2
3pub mod app_properties;
4pub mod core_properties;
5pub mod custom_properties;
6pub mod error;
7mod length;
8pub mod raw_xml;
9pub mod units;
10pub mod xml;
11pub mod xml_text;
12
13pub use error::{OxmlError, Result};
14pub use length::Length;
15pub use units::{Emu, HalfPoint, Twips};