pptx 0.1.0

A Rust library for creating and manipulating PowerPoint (.pptx) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Text formatting: `TextFrame`, `Paragraph`, `Run`, and `Font`.

pub mod bullet;
pub mod font;
pub mod paragraph;
pub mod run;
pub mod text_frame;

pub use bullet::BulletFormat;
pub use font::{Font, RgbColor};
pub use paragraph::Paragraph;
pub use run::Run;
pub use text_frame::TextFrame;