-
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
Upgrade to pulldown-cmark 0.8.0 #76689
Conversation
Thanks to marcusklaas' hard work in pulldown-cmark/pulldown-cmark#469, this fixes a lot of rustdoc bugs! - Get rid of unnecessary `RefCell` - Fix duplicate warnings for broken implicit reference link - Remove unnecessary copy of links
Do you want to add "Closes #76687" to your PR message and then I'll open a new issue for smart punctuation? |
Good idea, done |
It looks like rust-highfive didn't work. r? @euclio |
Hmm, perhaps it's offline? |
@camelid euclio isn't an org member, so highfive crashes. |
Huh, interesting. I thought I've seen it assign non-org members before, but maybe that was a manual assignment... |
This shows the span of the _whole_ link, including the brackets. But rustdoc only wants to warn about the link text.
e031c94
to
6f2e1c6
Compare
@camelid it does for issues via triagebot or has to "delegated" |
This is so great! :D @bors: r+ |
📌 Commit 6f2e1c6 has been approved by |
I reverted this back to using |
Rollup of 10 pull requests Successful merges: - rust-lang#73955 (deny(unsafe_op_in_unsafe_fn) in libstd/process.rs) - rust-lang#75146 (Detect overflow in proc_macro_server subspan) - rust-lang#75304 (Note when a a move/borrow error is caused by a deref coercion) - rust-lang#75749 (Consolidate some duplicate code in the sys modules.) - rust-lang#75882 (Use translated variable for test string) - rust-lang#75886 (Test that bounds checks are elided for [..index] after .position()) - rust-lang#76048 (Initial support for riscv32gc_unknown_linux_gnu) - rust-lang#76198 (Make some Ordering methods const) - rust-lang#76689 (Upgrade to pulldown-cmark 0.8.0) - rust-lang#76763 (Update cargo) Failed merges: r? `@ghost`
Thanks to marcusklaas' hard work in pulldown-cmark/pulldown-cmark#469, this fixes a lot of rustdoc bugs!
RefCell
Closes #73264, closes #76687.
r? @euclio
I'm not sure if the switch away from
locate
fixes any open bugs - euclio mentioned some in pulldown-cmark/pulldown-cmark#165, but I didn't see any related issues open for rustdoc. Let me know if I missed one.