1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! The elements here are used to create and handle tabular data
mod tr;
pub use tr::*;
mod tbody;
pub use tbody::*;
mod colgroup;
pub use colgroup::*;
mod caption;
pub use caption::*;
mod tfoot;
pub use tfoot::*;
mod col;
pub use col::*;
mod table;
pub use table::*;
mod th;
pub use th::*;
mod thead;
pub use thead::*;
mod td;
pub use td::*;