]> git.proxmox.com Git - rustc.git/blame - src/librustdoc/html/mod.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / librustdoc / html / mod.rs
CommitLineData
923072b8
FG
1pub(crate) mod escape;
2pub(crate) mod format;
3pub(crate) mod highlight;
4pub(crate) mod layout;
94222f64 5mod length_limit;
5869c6ff 6// used by the error-index generator, so it needs to be public
3dfed10e 7pub mod markdown;
923072b8
FG
8pub(crate) mod render;
9pub(crate) mod sources;
10pub(crate) mod static_files;
11pub(crate) mod toc;
a2a8927a 12mod url_parts_builder;
cdc7bbd5
XL
13
14#[cfg(test)]
15mod tests;