]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/mod.rs
rustdoc: combine duplicate rules in ayu CSS
[rust.git] / src / librustdoc / html / mod.rs
1 pub(crate) mod escape;
2 pub(crate) mod format;
3 pub(crate) mod highlight;
4 pub(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 pub(crate) mod render;
9 pub(crate) mod sources;
10 pub(crate) mod static_files;
11 pub(crate) mod toc;
12 mod url_parts_builder;
13
14 #[cfg(test)]
15 mod tests;