]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/mod.rs
Rollup merge of #93830 - camelid:cleanup-section-code, r=GuillaumeGomez
[rust.git] / src / librustdoc / html / mod.rs
1 crate mod escape;
2 crate mod format;
3 crate mod highlight;
4 crate mod layout;
5 mod length_limit;
6 // used by the error-index generator, so it needs to be public
7 pub mod markdown;
8 crate mod render;
9 crate mod sources;
10 crate mod static_files;
11 crate mod toc;
12 mod url_parts_builder;
13
14 #[cfg(test)]
15 mod tests;