1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
mod cell;
mod column;
mod row;
mod style;
mod table;
mod utils;

pub use crate::cell::{Cell, ToCell, ToCells};
pub use crate::column::Column;
pub use crate::row::{Row, ToRow};
pub use crate::table::{ColumnCellIter, Table};
pub use style::*;

#[cfg(doctest)]
doc_comment::doctest!("../README.md");