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
//! CLI module for PPTX tool

pub mod commands;
pub mod markdown;
pub mod parser;
pub mod syntax;

pub use commands::{CreateCommand, FromMarkdownCommand, InfoCommand, ValidateCommand};
pub use markdown::parse_markdown;
pub use parser::{Cli, Commands, ExportFormat};
pub use syntax::{generate_highlighted_code_xml, highlight_code};