-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Implementors in documentation aren't clickable #57695
Comments
This also applies to every "Implementations" item, e.g. for "Trait Implementations", "Auto Trait Implementations" and "Blanket Implementations", e.g. on https://doc.rust-lang.org/nightly/std/iter/struct.Map.html |
Works in current beta: https://doc.rust-lang.org/beta/std/panic/trait.RefUnwindSafe.html |
Funny enough, the link is still there, but you can't click it Not entirely sure, but it may be #56874 @JohnHeitmann |
It is the |
Looks like the Removing the .in-band, code {
z-index: -5;
} makes the links work again. |
I'll take a look (and thanks @m-ou-se for the lead!). |
My change broke that. Sorry folks! @GuillaumeGomez's fix looks good to me. |
…etMisdreavus Fix non-clickable urls Fixes rust-lang#57695 I didn't find anywhere where this rule was useful. Why did you add it @JohnHeitmann? r? @QuietMisdreavus
…etMisdreavus Fix non-clickable urls Fixes rust-lang#57695 I didn't find anywhere where this rule was useful. Why did you add it @JohnHeitmann? r? @QuietMisdreavus
Compare:
https://doc.rust-lang.org/stable/std/panic/trait.RefUnwindSafe.html
https://doc.rust-lang.org/nightly/std/panic/trait.RefUnwindSafe.html
It's not possible to click on
AtomicBool
inimpl RefUnwindSafe for AtomicBool
anymore, while it is possible on stable and beta.The text was updated successfully, but these errors were encountered: