diff options
| author | Michael Howell <michael@notriddle.com> | 2025-08-18 08:40:01 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2025-08-18 08:40:01 -0700 |
| commit | 79a40c94691fb1b8bada32c113e94701e8ff80e3 (patch) | |
| tree | 92129c0899b1b9016c7291fb46793bf80848d855 | |
| parent | 8511e40e7294e1efcc64b81d43969b6bf0f14c2d (diff) | |
| download | rust-79a40c94691fb1b8bada32c113e94701e8ff80e3.tar.gz rust-79a40c94691fb1b8bada32c113e94701e8ff80e3.zip | |
rustdoc: add rustdoc top bar web component
| -rw-r--r-- | src/tools/compiletest/src/runtest.rs | 2 | ||||
| -rw-r--r-- | src/tools/html-checker/main.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index be4663fffbe..821cb128647 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -2151,7 +2151,7 @@ impl<'test> TestCx<'test> { #[rustfmt::skip] let tidy_args = [ - "--new-blocklevel-tags", "rustdoc-search,rustdoc-toolbar", + "--new-blocklevel-tags", "rustdoc-search,rustdoc-toolbar,rustdoc-topbar", "--indent", "yes", "--indent-spaces", "2", "--wrap", "0", diff --git a/src/tools/html-checker/main.rs b/src/tools/html-checker/main.rs index 5cdc4d53ab5..d5335d9e72e 100644 --- a/src/tools/html-checker/main.rs +++ b/src/tools/html-checker/main.rs @@ -31,7 +31,7 @@ fn check_html_file(file: &Path) -> usize { .arg("--mute-id") // this option is useful in case we want to mute more warnings .arg("yes") .arg("--new-blocklevel-tags") - .arg("rustdoc-search,rustdoc-toolbar") // custom elements + .arg("rustdoc-search,rustdoc-toolbar,rustdoc-topbar") // custom elements .arg("--mute") .arg(&to_mute_s) .arg(file); |
