ppt-rs 0.2.19

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
//! Systematic PPTX package validation for generated decks.
//!
//! Run [`validate_package_bytes`] after generation (or in tests) to catch
//! structural issues before opening in PowerPoint.

mod context;
mod rels;
mod report;
mod rules;

pub use report::{
    PackageValidationIssue, PackageValidationReport, ValidationCategory, ValidationSeverity,
};
pub use rules::{validate_package, validate_package_bytes, REQUIRED_PACKAGE_PARTS};