rustdoc/html/mod.rs
1pub(crate) mod escape;
2pub(crate) mod format;
3pub(crate) mod highlight;
4pub(crate) mod layout;
5mod length_limit;
6// used by the error-index generator, so it needs to be public
7pub mod markdown;
8pub(crate) mod render;
9pub(crate) mod sources;
10pub(crate) mod static_files;
11pub(crate) mod toc;
12mod url_parts_builder;
13
14#[cfg(test)]
15mod tests;