ppt_rs/generator/table/mod.rs
1//! Table module for PPTX generation
2//!
3//! This module provides comprehensive table support including:
4//! - Cell content and formatting
5//! - Row and column management
6//! - Text alignment (horizontal and vertical)
7//! - Cell backgrounds and borders
8//! - Text wrapping
9//! - XML generation for OOXML
10
11mod cell;
12mod row;
13mod builder;
14mod format;
15mod style;
16mod xml;
17
18pub use cell::{TableCell, CellAlign, CellVAlign};
19pub use row::TableRow;
20pub use builder::{Table, TableBuilder};
21pub use format::generate_cell_xml;
22pub use style::{header_cell, table_from_string_rows, IMPORT_HEADER_BG, HELPER_HEADER_BG, HEADER_TEXT};
23pub use xml::generate_table_xml;