html_sys/metadata/
mod.rs

1//! Metadata contains information about the page.
2mod base;
3pub use base::*;
4mod head;
5pub use head::*;
6mod link;
7pub use link::*;
8mod meta;
9pub use meta::*;
10mod style;
11pub use style::*;
12mod title;
13pub use title::*;