-
Notifications
You must be signed in to change notification settings - Fork 13k
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 codeblocks overflow #87056
Fix codeblocks overflow #87056
Conversation
Some changes occurred in HTML/CSS/JS. |
This comment has been minimized.
This comment has been minimized.
0c8c8d7
to
fc8600d
Compare
☔ The latest upstream changes (presumably #87095) made this pull request unmergeable. Please resolve the merge conflicts. |
fc8600d
to
09270ed
Compare
r? @notriddle |
@bors: r=notriddle |
📌 Commit 09270ed has been approved by |
…low, r=notriddle Fix codeblocks overflow Fixes rust-lang#87043. Instead of completely relying on `pulldown-cmark` (and its potential changes), I decided to move the generation of codeblocks HTML directly in rustdoc so we can unify the DOM and the CSS classes. r? `@Nemo157`
…low, r=notriddle Fix codeblocks overflow Fixes rust-lang#87043. Instead of completely relying on `pulldown-cmark` (and its potential changes), I decided to move the generation of codeblocks HTML directly in rustdoc so we can unify the DOM and the CSS classes. r? ``@Nemo157``
⌛ Testing commit 09270ed with merge b6139eccc1932ed0cacffd743f35795a8d672207... |
This comment has been minimized.
This comment has been minimized.
💔 Test failed - checks-actions |
09270ed
to
7593bfe
Compare
@bors: r=notriddle |
📌 Commit 7593bfe has been approved by |
…laumeGomez Rollup of 6 pull requests Successful merges: - rust-lang#87027 (expand: Support helper attributes for built-in derive macros) - rust-lang#87056 (Fix codeblocks overflow) - rust-lang#87117 (Shrink the CrateStore dynamic interface.) - rust-lang#87120 (rustdoc: Remove unnecessary `extern crate` aliases) - rust-lang#87125 (Fix Ayu theme `<code>` color) - rust-lang#87130 (Update browser-ui-test package version) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Fixes #87043.
Instead of completely relying on
pulldown-cmark
(and its potential changes), I decided to move the generation of codeblocks HTML directly in rustdoc so we can unify the DOM and the CSS classes.r? @Nemo157