//! Content sectioning elements allow you to organize the document content into logical pieces
mod aside;
pub use aside::*;
mod nav;
pub use nav::*;
mod header;
pub use header::*;
mod h6;
pub use h6::*;
mod footer;
pub use footer::*;
mod section;
pub use section::*;
mod h1;
pub use h1::*;
mod hgroup;
pub use hgroup::*;
mod address;
pub use address::*;
mod h3;
pub use h3::*;
mod h2;
pub use h2::*;
mod article;
pub use article::*;
mod body;
pub use body::*;
mod h5;
pub use h5::*;
mod h4;
pub use h4::*;