about summary refs log tree commit diff
path: root/src/librustdoc/html/mod.rs
blob: 109b0a356db5ff26f352701edea20ba12f152462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
crate mod escape;
crate mod format;
crate mod highlight;
crate mod layout;
mod length_limit;
// used by the error-index generator, so it needs to be public
pub mod markdown;
crate mod render;
crate mod sources;
crate mod static_files;
crate mod toc;

#[cfg(test)]
mod tests;