diff options
| author | bors <bors@rust-lang.org> | 2017-05-25 04:38:53 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-05-25 04:38:53 +0000 |
| commit | ffb0e2dba38adb0bacf6636719bfe709286851fd (patch) | |
| tree | 4d91f559c118e27a9280aaf584ee3beb8317f71f | |
| parent | cf747fcbf716a8afced9d23aa15bb47d93805209 (diff) | |
| parent | b4d594f46c6c8b460e194bf2d8da016f8eae0bf6 (diff) | |
| download | rust-ffb0e2dba38adb0bacf6636719bfe709286851fd.tar.gz rust-ffb0e2dba38adb0bacf6636719bfe709286851fd.zip | |
Auto merge of #41700 - GuillaumeGomez:extend-css-stable, r=killercup
Set --extend-css stable I think it's now time to set this option stable. r? @rust-lang/docs
| -rw-r--r-- | src/librustdoc/lib.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index f682f6aa763..380ee9c06a7 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -178,9 +178,10 @@ pub fn opts() -> Vec<RustcOptGroup> { stable(optopt("", "markdown-playground-url", "URL to send code snippets to", "URL")), stable(optflag("", "markdown-no-toc", "don't include table of contents")), - unstable(optopt("e", "extend-css", - "to redefine some css rules with a given file to generate doc with your \ - own theme", "PATH")), + stable(optopt("e", "extend-css", + "To add some CSS rules with a given file to generate doc with your \ + own theme. However, your theme might break if the rustdoc's generated HTML \ + changes, so be careful!", "PATH")), unstable(optmulti("Z", "", "internal and debugging options (only on nightly build)", "FLAG")), stable(optopt("", "sysroot", "Override the system root", "PATH")), |
