Almost all of the modules are crate-private, except for `rustdoc::json::types`, which I believe is intended to be for public use; and `rustdoc::html::markdown`, which is used externally by the error-index generator and so has to be public.
10 lines
232 B
Rust
10 lines
232 B
Rust
crate mod escape;
|
|
crate mod format;
|
|
crate mod highlight;
|
|
crate mod layout;
|
|
// 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;
|