html_sys/sections/
mod.rs

1//! Content sectioning elements allow you to organize the document content into logical pieces
2mod address;
3pub use address::*;
4mod article;
5pub use article::*;
6mod aside;
7pub use aside::*;
8mod body;
9pub use body::*;
10mod footer;
11pub use footer::*;
12mod h1;
13pub use h1::*;
14mod h2;
15pub use h2::*;
16mod h3;
17pub use h3::*;
18mod h4;
19pub use h4::*;
20mod h5;
21pub use h5::*;
22mod h6;
23pub use h6::*;
24mod header;
25pub use header::*;
26mod hgroup;
27pub use hgroup::*;
28mod nav;
29pub use nav::*;
30mod section;
31pub use section::*;