]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/mod.rs
Rollup merge of #91091 - ecstatic-morse:control-flow-enum-is, r=m-ou-se
[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
13 #[cfg(test)]
14 mod tests;