Skip to content

Commit b0632d2

Browse files
committed
rustdoc: update pulldown-cmark to 0.10
1 parent e50ab29 commit b0632d2

File tree

9 files changed

+94
-100
lines changed

9 files changed

+94
-100
lines changed

Cargo.lock

+2-13
Original file line numberDiff line numberDiff line change
@@ -2378,7 +2378,7 @@ dependencies = [
23782378
"memchr",
23792379
"once_cell",
23802380
"opener",
2381-
"pulldown-cmark 0.10.0",
2381+
"pulldown-cmark",
23822382
"regex",
23832383
"serde",
23842384
"serde_json",
@@ -3049,17 +3049,6 @@ dependencies = [
30493049
"cc",
30503050
]
30513051

3052-
[[package]]
3053-
name = "pulldown-cmark"
3054-
version = "0.9.6"
3055-
source = "registry+https://github.com/rust-lang/crates.io-index"
3056-
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
3057-
dependencies = [
3058-
"bitflags 2.4.2",
3059-
"memchr",
3060-
"unicase",
3061-
]
3062-
30633052
[[package]]
30643053
name = "pulldown-cmark"
30653054
version = "0.10.0"
@@ -4526,7 +4515,7 @@ name = "rustc_resolve"
45264515
version = "0.0.0"
45274516
dependencies = [
45284517
"bitflags 2.4.2",
4529-
"pulldown-cmark 0.9.6",
4518+
"pulldown-cmark",
45304519
"rustc_arena",
45314520
"rustc_ast",
45324521
"rustc_ast_pretty",

compiler/rustc_resolve/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
# tidy-alphabetical-start
88
bitflags = "2.4.1"
9-
pulldown-cmark = { version = "0.9.6", default-features = false }
9+
pulldown-cmark = { version = "0.10", default-features = false, features = ["html"] }
1010
rustc_arena = { path = "../rustc_arena" }
1111
rustc_ast = { path = "../rustc_ast" }
1212
rustc_ast_pretty = { path = "../rustc_ast_pretty" }

compiler/rustc_resolve/src/rustdoc.rs

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
use pulldown_cmark::{BrokenLink, CowStr, Event, LinkType, Options, Parser, Tag};
1+
use pulldown_cmark::{
2+
BrokenLink, BrokenLinkCallback, CowStr, Event, LinkType, Options, Parser, Tag,
3+
};
24
use rustc_ast as ast;
35
use rustc_ast::util::comments::beautify_doc_string;
46
use rustc_data_structures::fx::FxHashMap;
@@ -413,7 +415,7 @@ fn parse_links<'md>(doc: &'md str) -> Vec<Box<str>> {
413415

414416
while let Some(event) = event_iter.next() {
415417
match event {
416-
Event::Start(Tag::Link(link_type, dest, _)) if may_be_doc_link(link_type) => {
418+
Event::Start(Tag::Link { link_type, dest_url, .. }) if may_be_doc_link(link_type) => {
417419
if matches!(
418420
link_type,
419421
LinkType::Inline
@@ -427,7 +429,7 @@ fn parse_links<'md>(doc: &'md str) -> Vec<Box<str>> {
427429
}
428430
}
429431

430-
links.push(preprocess_link(&dest));
432+
links.push(preprocess_link(&dest_url));
431433
}
432434
_ => {}
433435
}
@@ -437,9 +439,10 @@ fn parse_links<'md>(doc: &'md str) -> Vec<Box<str>> {
437439
}
438440

439441
/// Collects additional data of link.
440-
fn collect_link_data<'input, 'callback>(
441-
event_iter: &mut Parser<'input, 'callback>,
442-
) -> Option<Box<str>> {
442+
fn collect_link_data<'input, F>(event_iter: &mut Parser<'input, F>) -> Option<Box<str>>
443+
where
444+
F: BrokenLinkCallback<'input>,
445+
{
443446
let mut display_text: Option<String> = None;
444447
let mut append_text = |text: CowStr<'_>| {
445448
if let Some(display_text) = &mut display_text {

src/librustdoc/html/markdown.rs

+53-58
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ use crate::html::render::small_url_encode;
5454
use crate::html::toc::TocBuilder;
5555

5656
use pulldown_cmark::{
57-
html, BrokenLink, CodeBlockKind, CowStr, Event, LinkType, OffsetIter, Options, Parser, Tag,
57+
html, BrokenLink, BrokenLinkCallback, CodeBlockKind, CowStr, Event, LinkType, OffsetIter,
58+
Options, Parser, Tag, TagEnd,
5859
};
5960

6061
#[cfg(test)]
@@ -242,7 +243,7 @@ impl<'a, I: Iterator<Item = Event<'a>>> Iterator for CodeBlocks<'_, 'a, I> {
242243
let mut original_text = String::new();
243244
for event in &mut self.inner {
244245
match event {
245-
Event::End(Tag::CodeBlock(..)) => break,
246+
Event::End(TagEnd::CodeBlock) => break,
246247
Event::Text(ref s) => {
247248
original_text.push_str(s);
248249
}
@@ -368,20 +369,20 @@ impl<'a, I: Iterator<Item = Event<'a>>> Iterator for LinkReplacer<'a, I> {
368369
match &mut event {
369370
// This is a shortcut link that was resolved by the broken_link_callback: `[fn@f]`
370371
// Remove any disambiguator.
371-
Some(Event::Start(Tag::Link(
372+
Some(Event::Start(Tag::Link {
372373
// [fn@f] or [fn@f][]
373-
LinkType::ShortcutUnknown | LinkType::CollapsedUnknown,
374-
dest,
374+
link_type: LinkType::ShortcutUnknown | LinkType::CollapsedUnknown,
375+
dest_url,
375376
title,
376-
))) => {
377-
debug!("saw start of shortcut link to {dest} with title {title}");
377+
..
378+
})) => {
379+
debug!("saw start of shortcut link to {dest_url} with title {title}");
378380
// If this is a shortcut link, it was resolved by the broken_link_callback.
379381
// So the URL will already be updated properly.
380-
let link = self.links.iter().find(|&link| *link.href == **dest);
382+
let link = self.links.iter().find(|&link| *link.href == **dest_url);
381383
// Since this is an external iterator, we can't replace the inner text just yet.
382384
// Store that we saw a link so we know to replace it later.
383385
if let Some(link) = link {
384-
trace!("it matched");
385386
assert!(self.shortcut_link.is_none(), "shortcut links cannot be nested");
386387
self.shortcut_link = Some(link);
387388
if title.is_empty() && !link.tooltip.is_empty() {
@@ -390,21 +391,14 @@ impl<'a, I: Iterator<Item = Event<'a>>> Iterator for LinkReplacer<'a, I> {
390391
}
391392
}
392393
// Now that we're done with the shortcut link, don't replace any more text.
393-
Some(Event::End(Tag::Link(
394-
LinkType::ShortcutUnknown | LinkType::CollapsedUnknown,
395-
dest,
396-
_,
397-
))) => {
398-
debug!("saw end of shortcut link to {dest}");
399-
if self.links.iter().any(|link| *link.href == **dest) {
400-
assert!(self.shortcut_link.is_some(), "saw closing link without opening tag");
401-
self.shortcut_link = None;
394+
Some(Event::End(TagEnd::Link)) => {
395+
if let Some(link) = self.shortcut_link.take() {
396+
debug!("saw end of shortcut link to {}", link.href);
402397
}
403398
}
404399
// Handle backticks in inline code blocks, but only if we're in the middle of a shortcut link.
405400
// [`fn@f`]
406401
Some(Event::Code(text)) => {
407-
trace!("saw code {text}");
408402
if let Some(link) = self.shortcut_link {
409403
// NOTE: this only replaces if the code block is the *entire* text.
410404
// If only part of the link has code highlighting, the disambiguator will not be removed.
@@ -427,7 +421,6 @@ impl<'a, I: Iterator<Item = Event<'a>>> Iterator for LinkReplacer<'a, I> {
427421
// Replace plain text in links, but only in the middle of a shortcut link.
428422
// [fn@f]
429423
Some(Event::Text(text)) => {
430-
trace!("saw text {text}");
431424
if let Some(link) = self.shortcut_link {
432425
// NOTE: same limitations as `Event::Code`
433426
if let Some(link) = self
@@ -442,7 +435,7 @@ impl<'a, I: Iterator<Item = Event<'a>>> Iterator for LinkReplacer<'a, I> {
442435
}
443436
// If this is a link, but not a shortcut link,
444437
// replace the URL, since the broken_link_callback was not called.
445-
Some(Event::Start(Tag::Link(_, dest, title))) => {
438+
Some(Event::Start(Tag::Link { dest_url: dest, title, .. })) => {
446439
if let Some(link) = self.links.iter().find(|&link| *link.original_text == **dest) {
447440
*dest = CowStr::Borrowed(link.href.as_ref());
448441
if title.is_empty() && !link.tooltip.is_empty() {
@@ -486,9 +479,9 @@ impl<'a, I: Iterator<Item = Event<'a>>> Iterator for TableWrapper<'a, I> {
486479
self.stored_events.push_back(Event::Start(Tag::Table(t)));
487480
Event::Html(CowStr::Borrowed("<div>"))
488481
}
489-
Event::End(Tag::Table(t)) => {
482+
Event::End(TagEnd::Table) => {
490483
self.stored_events.push_back(Event::Html(CowStr::Borrowed("</div>")));
491-
Event::End(Tag::Table(t))
484+
Event::End(TagEnd::Table)
492485
}
493486
e => e,
494487
})
@@ -528,11 +521,11 @@ impl<'a, 'b, 'ids, I: Iterator<Item = SpannedEvent<'a>>> Iterator
528521
}
529522

530523
let event = self.inner.next();
531-
if let Some((Event::Start(Tag::Heading(level, _, _)), _)) = event {
524+
if let Some((Event::Start(Tag::Heading { level, .. }), _)) = event {
532525
let mut id = String::new();
533526
for event in &mut self.inner {
534527
match &event.0 {
535-
Event::End(Tag::Heading(..)) => break,
528+
Event::End(TagEnd::Heading(..)) => break,
536529
Event::Text(text) | Event::Code(text) => {
537530
id.extend(text.chars().filter_map(slugify));
538531
self.buf.push_back(event);
@@ -575,27 +568,27 @@ impl<'a, I: Iterator<Item = Event<'a>>> SummaryLine<'a, I> {
575568
}
576569
}
577570

578-
fn check_if_allowed_tag(t: &Tag<'_>) -> bool {
571+
fn check_if_allowed_tag(t: TagEnd) -> bool {
579572
matches!(
580573
t,
581-
Tag::Paragraph
582-
| Tag::Emphasis
583-
| Tag::Strong
584-
| Tag::Strikethrough
585-
| Tag::Link(..)
586-
| Tag::BlockQuote
574+
TagEnd::Paragraph
575+
| TagEnd::Emphasis
576+
| TagEnd::Strong
577+
| TagEnd::Strikethrough
578+
| TagEnd::Link
579+
| TagEnd::BlockQuote
587580
)
588581
}
589582

590-
fn is_forbidden_tag(t: &Tag<'_>) -> bool {
583+
fn is_forbidden_tag(t: TagEnd) -> bool {
591584
matches!(
592585
t,
593-
Tag::CodeBlock(_)
594-
| Tag::Table(_)
595-
| Tag::TableHead
596-
| Tag::TableRow
597-
| Tag::TableCell
598-
| Tag::FootnoteDefinition(_)
586+
TagEnd::CodeBlock
587+
| TagEnd::Table
588+
| TagEnd::TableHead
589+
| TagEnd::TableRow
590+
| TagEnd::TableCell
591+
| TagEnd::FootnoteDefinition
599592
)
600593
}
601594

@@ -613,14 +606,15 @@ impl<'a, I: Iterator<Item = Event<'a>>> Iterator for SummaryLine<'a, I> {
613606
let mut is_start = true;
614607
let is_allowed_tag = match event {
615608
Event::Start(ref c) => {
616-
if is_forbidden_tag(c) {
609+
let end_tag = c.to_end();
610+
if is_forbidden_tag(end_tag) {
617611
self.skipped_tags += 1;
618612
return None;
619613
}
620614
self.depth += 1;
621-
check_if_allowed_tag(c)
615+
check_if_allowed_tag(end_tag)
622616
}
623-
Event::End(ref c) => {
617+
Event::End(c) => {
624618
if is_forbidden_tag(c) {
625619
self.skipped_tags += 1;
626620
return None;
@@ -642,7 +636,7 @@ impl<'a, I: Iterator<Item = Event<'a>>> Iterator for SummaryLine<'a, I> {
642636
if is_start {
643637
Some(Event::Start(Tag::Paragraph))
644638
} else {
645-
Some(Event::End(Tag::Paragraph))
639+
Some(Event::End(TagEnd::Paragraph))
646640
}
647641
} else {
648642
Some(event)
@@ -688,7 +682,7 @@ impl<'a, I: Iterator<Item = SpannedEvent<'a>>> Iterator for Footnotes<'a, I> {
688682
Some((Event::Start(Tag::FootnoteDefinition(def)), _)) => {
689683
let mut content = Vec::new();
690684
for (event, _) in &mut self.inner {
691-
if let Event::End(Tag::FootnoteDefinition(..)) = event {
685+
if let Event::End(TagEnd::FootnoteDefinition) = event {
692686
break;
693687
}
694688
content.push(event);
@@ -705,7 +699,7 @@ impl<'a, I: Iterator<Item = SpannedEvent<'a>>> Iterator for Footnotes<'a, I> {
705699
for (mut content, id) in v {
706700
write!(ret, "<li id=\"fn{id}\">").unwrap();
707701
let mut is_paragraph = false;
708-
if let Some(&Event::End(Tag::Paragraph)) = content.last() {
702+
if let Some(&Event::End(TagEnd::Paragraph)) = content.last() {
709703
content.pop();
710704
is_paragraph = true;
711705
}
@@ -804,7 +798,7 @@ pub(crate) fn find_codes<T: doctest::Tester>(
804798
tests.add_test(text, block_info, line);
805799
prev_offset = offset.start;
806800
}
807-
Event::Start(Tag::Heading(level, _, _)) => {
801+
Event::Start(Tag::Heading { level, .. }) => {
808802
register_header = Some(level as u32);
809803
}
810804
Event::Text(ref s) if register_header.is_some() => {
@@ -1488,7 +1482,7 @@ impl MarkdownItemInfo<'_> {
14881482
let p = Footnotes::new(p);
14891483
let p = TableWrapper::new(p.map(|(ev, _)| ev));
14901484
let p = p.filter(|event| {
1491-
!matches!(event, Event::Start(Tag::Paragraph) | Event::End(Tag::Paragraph))
1485+
!matches!(event, Event::Start(Tag::Paragraph) | Event::End(TagEnd::Paragraph))
14921486
});
14931487
html::push_html(&mut s, p);
14941488

@@ -1518,7 +1512,7 @@ impl MarkdownSummaryLine<'_> {
15181512
let mut s = String::new();
15191513

15201514
let without_paragraphs = LinkReplacer::new(&mut summary, links).filter(|event| {
1521-
!matches!(event, Event::Start(Tag::Paragraph) | Event::End(Tag::Paragraph))
1515+
!matches!(event, Event::Start(Tag::Paragraph) | Event::End(TagEnd::Paragraph))
15221516
});
15231517

15241518
html::push_html(&mut s, without_paragraphs);
@@ -1590,8 +1584,8 @@ fn markdown_summary_with_limit(
15901584
_ => {}
15911585
},
15921586
Event::End(tag) => match tag {
1593-
Tag::Emphasis | Tag::Strong => buf.close_tag(),
1594-
Tag::Paragraph | Tag::Heading(..) => return ControlFlow::Break(()),
1587+
TagEnd::Emphasis | TagEnd::Strong => buf.close_tag(),
1588+
TagEnd::Paragraph | TagEnd::Heading(..) => return ControlFlow::Break(()),
15951589
_ => {}
15961590
},
15971591
Event::HardBreak | Event::SoftBreak => buf.push(" ")?,
@@ -1651,8 +1645,8 @@ pub(crate) fn plain_text_summary(md: &str, link_names: &[RenderedLink]) -> Strin
16511645
}
16521646
Event::HardBreak | Event::SoftBreak => s.push(' '),
16531647
Event::Start(Tag::CodeBlock(..)) => break,
1654-
Event::End(Tag::Paragraph) => break,
1655-
Event::End(Tag::Heading(..)) => break,
1648+
Event::End(TagEnd::Paragraph) => break,
1649+
Event::End(TagEnd::Heading(..)) => break,
16561650
_ => (),
16571651
}
16581652
}
@@ -1811,7 +1805,7 @@ pub(crate) fn markdown_links<'md, R>(
18111805

18121806
while let Some((event, span)) = event_iter.next() {
18131807
match event {
1814-
Event::Start(Tag::Link(link_type, dest, _)) if may_be_doc_link(link_type) => {
1808+
Event::Start(Tag::Link { link_type, dest_url, .. }) if may_be_doc_link(link_type) => {
18151809
let range = match link_type {
18161810
// Link is pulled from the link itself.
18171811
LinkType::ReferenceUnknown | LinkType::ShortcutUnknown => {
@@ -1821,7 +1815,7 @@ pub(crate) fn markdown_links<'md, R>(
18211815
LinkType::Inline => span_for_offset_backward(span, b'(', b')'),
18221816
// Link is pulled from elsewhere in the document.
18231817
LinkType::Reference | LinkType::Collapsed | LinkType::Shortcut => {
1824-
span_for_link(&dest, span)
1818+
span_for_link(&dest_url, span)
18251819
}
18261820
LinkType::Autolink | LinkType::Email => unreachable!(),
18271821
};
@@ -1841,7 +1835,7 @@ pub(crate) fn markdown_links<'md, R>(
18411835

18421836
if let Some(link) = preprocess_link(MarkdownLink {
18431837
kind: link_type,
1844-
link: dest.into_string(),
1838+
link: dest_url.into_string(),
18451839
display_text,
18461840
range,
18471841
}) {
@@ -1856,9 +1850,10 @@ pub(crate) fn markdown_links<'md, R>(
18561850
}
18571851

18581852
/// Collects additional data of link.
1859-
fn collect_link_data<'input, 'callback>(
1860-
event_iter: &mut OffsetIter<'input, 'callback>,
1861-
) -> Option<String> {
1853+
fn collect_link_data<'input, F>(event_iter: &mut OffsetIter<'input, F>) -> Option<String>
1854+
where
1855+
F: BrokenLinkCallback<'input>,
1856+
{
18621857
let mut display_text: Option<String> = None;
18631858
let mut append_text = |text: CowStr<'_>| {
18641859
if let Some(display_text) = &mut display_text {

src/librustdoc/passes/lint/bare_urls.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@ pub(super) fn visit_item(cx: &DocContext<'_>, item: &Item) {
4141
match event {
4242
Event::Text(s) => find_raw_urls(cx, &s, range, &report_diag),
4343
// We don't want to check the text inside code blocks or links.
44-
Event::Start(tag @ (Tag::CodeBlock(_) | Tag::Link(..))) => {
44+
Event::Start(tag @ (Tag::CodeBlock(_) | Tag::Link { .. })) => {
45+
let tag_end = tag.to_end();
4546
while let Some((event, _)) = p.next() {
4647
match event {
4748
Event::End(end)
48-
if mem::discriminant(&end) == mem::discriminant(&tag) =>
49+
if mem::discriminant(&end) == mem::discriminant(&tag_end) =>
4950
{
5051
break;
5152
}

0 commit comments

Comments
 (0)