ppt-rs 0.2.12

Create, read, and update PowerPoint 2007+ (.pptx) files with rich formatting, bullet styles, themes, and templates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! OXML (Office XML) element handling

pub mod editor;
pub mod ns;
pub mod presentation;
pub mod repair;
pub mod slide;
pub mod xmlchemy;

pub use editor::PresentationEditor;
pub use ns::Namespace;
pub use presentation::{PresentationInfo, PresentationReader};
pub use repair::{PptxRepair, RepairIssue, RepairResult};
pub use slide::{ParsedSlide, SlideParser};
pub use xmlchemy::{XmlElement, XmlParser};