html_sys/tables/
mod.rs

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