ppt-rs 0.2.14

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
//! Slide generation module
//!
//! Contains utilities for generating slide XML with various layouts
//! and text formatting.

pub mod formatting;

pub use formatting::{
    TextSegment,
    parse_inline_formatting,
    generate_rich_text_runs,
    generate_text_props,
};