From ccc88a2751273ee81d2a7d1290643639a2237a83 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Thu, 29 Nov 2018 22:37:30 +0100 Subject: [PATCH] Add doc for `disable-minification` option --- src/doc/rustdoc/src/unstable-features.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/doc/rustdoc/src/unstable-features.md b/src/doc/rustdoc/src/unstable-features.md index 3938df1a68267..9fa506c67a5e8 100644 --- a/src/doc/rustdoc/src/unstable-features.md +++ b/src/doc/rustdoc/src/unstable-features.md @@ -455,3 +455,7 @@ Some methodology notes about what rustdoc counts in this metric: Public items that are not documented can be seen with the built-in `missing_docs` lint. Private items that are not documented can be seen with Clippy's `missing_docs_in_private_items` lint. + +### `disable-minification`: prevent minification of CSS and JS files + +By default, all JS and CSS files are minified in order to make them smaller. However, it's also a lot harder to read them. This feature allows you to prevent it.