Description
In #40338, we landed pulldown-cmark. 🎊
But, given that it's a different renderer, there are bound to be differences. This comment pointed out some obvious problems. These bugs are going to be much easier to clean up than the initial PR was to land, though 👍
To help with this work, I generated docs for both the commit before and the commit of, ran all the HTML files through tidy-html5, and put it up here: steveklabnik/docdiff@ddda1fe the '
-> "
changes are expected, but that tool doesn't have the ability to re-write those, so I left them in for now, which, frankly, makes the diff kinda large. working on it.
Here's the stuff we've found so far:
- horizontal rulesfootnotes (waiting for pulldown update End footnote definition with one blank line. pulldown-cmark/pulldown-cmark#21)images
<br />
forHardBreak
sthe title part of links being rendered as visible text rather than as an attribute on the<a>
tag (imperio update: I'll need an example to be able to fix this one)MarkdownHtml
now doing the same asMarkdown
when it should be escaping raw HTML.In src/libstd/collections/hash/map.rs under "Relevant papers/articles:", it appears the ordered list has been rendered as an unordered list instead. PR r+'d^
now needs to be an html<sup>
. (this is not a regression in the code, but something that needs to be adapted in the docs) Replace ^ with <sup> html balise #41043Panic caused by Markdown in latest nightly #40918 (this one was due to markdown spec switch)Footnotes should have a link back to their referent, see Add support for image, rules and footnotes #40919 (comment)words getting smooshed together (I think the hard/soft break fixed this, I'm not observing it now)Nonfatal rustdoc error on cssparser-macros #40978 (this one was due to markdown spec switch)
This change will land in tonight (3/29)'s nightly, so we can also poke at them then. I plan on making a users post tomorrow to advertise this bug.
Tagging as a regression so we make sure to take care of it. Marking as P-high
and assigning @GuillaumeGomez and @frewsxcv who are both already working at knocking some of this out.
Activity
ScottAbbey commentedon Mar 29, 2017
In core/intrinsics/fn.overflowing_sub.html.txt (and elsewhere?), hoedown was rendering
2^N
as2<sup>N</sup>
, the new version just leaves it as2^N
.This isn't recognized in the CommonMark spec, probably need to change the source to
2<sup>N</sup>
?steveklabnik commentedon Mar 29, 2017
@ScottAbbey agree 100%; we'll have to send in a PR to fix. I wonder what the easiest way of finding all of them is.....
ScottAbbey commentedon Mar 29, 2017
It looks like markdown.rs is squishing things together when a list item spans multiple lines. In
pulldown-cmark
's html.rs, this would have been a SoftBreak that got turned into a\n
, it appears this rendering is just throwing those away. Maybe not all of them? But some?steveklabnik commentedon Mar 29, 2017
For the
^
issue;rg -g !*.cpp -g !*.h \^ | rg "///"
is giving me pretty reasonable results. Still lots of false positives, but manageable.ScottAbbey commentedon Mar 29, 2017
In src/libstd/collections/hash/map.rs under "Relevant papers/articles:", it appears the ordered list has been rendered as an unordered list instead.
SergioBenitez commentedon Mar 30, 2017
I'm getting an unexpected panic from
rustc
that appears to be caused by the transition:The markdown being referenced in the error looks like this:
Edit: I'll open a separate issue for this.
42 remaining items
Rollup merge of rust-lang#41112 - ollie27:rustdoc_pull, r=GuillaumeGomez
Rollup merge of rust-lang#41111 - ollie27:docs_markdown_fix, r=Guilla…
Rollup merge of rust-lang#41112 - ollie27:rustdoc_pull, r=GuillaumeGomez
steveklabnik commentedon Apr 7, 2017
@ollie27 thanks so much!
steveklabnik commentedon Apr 7, 2017
It looks like this is complete, modulo some small possible changes upstream with regards to footnotes.
Great work everyone! Thank you so much ❤️
bluss commentedon Apr 8, 2017
Thanks ❤️
Fix links