lo_core 0.3.3

Core data models and XML utilities for ODF document generation
Documentation
pub mod base;
pub mod calc;
pub mod draw;
pub mod error;
pub mod geometry;
pub mod html;
pub mod impress;
pub mod math;
pub mod meta;
pub mod pdf;
pub mod style;
pub mod svg;
pub mod units;
pub mod writer;
pub mod xml;
pub mod xml_parser;

pub use base::*;
pub use calc::*;
pub use draw::*;
pub use error::{LoError, Result};
pub use geometry::*;
pub use html::*;
pub use impress::*;
pub use math::*;
pub use meta::*;
pub use pdf::*;
pub use style::*;
pub use svg::*;
pub use units::*;
pub use writer::*;
pub use xml::*;
pub use xml_parser::{
    decode_entities, local_name, parse_xml_document, serialize_xml_document, serialize_xml_node,
    XmlItem, XmlNode,
};