-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix --extend-css
option
#110235
Fix --extend-css
option
#110235
Conversation
r? @notriddle (rustbot has picked a reviewer for you, use r? to override) |
Will this work in docs.rs? It seems to have a dedicated route for static files that will only resolve toolchain files, not invocation-specific ones: And crate authors can instruct docs.rs to pass |
That's a very good point. I think updating the path in the template is the correct way to do this then. |
a47118c
to
b76821b
Compare
Applied suggestions. |
@bors r+ rollup |
…iaskrgr Rollup of 8 pull requests Successful merges: - rust-lang#109810 (Replace rustdoc-ui/{c,z}-help tests with a stable run-make test ) - rust-lang#110035 (fix: ensure bad `#[test]` invocs retain correct AST) - rust-lang#110089 (sync::mpsc: synchronize receiver disconnect with initialization) - rust-lang#110103 (Report overflows gracefully with new solver) - rust-lang#110122 (Fix x check --stage 1 when download-ci-llvm=false) - rust-lang#110133 (Do not use ImplDerivedObligationCause for inherent impl method error reporting) - rust-lang#110135 (Revert "Don't recover lifetimes/labels containing emojis as character literals") - rust-lang#110235 (Fix `--extend-css` option) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Fixes #110002.
The file was generated in the wrong folder so I moved it into
static.files
as it made more sense to have there instead of changing the path in the templates.I also added a GUI test to ensure that this option won't break unexpectedly again.