Skip to content

Commit 5452d92

Browse files
Allow links in doc blocks headings
1 parent 3206d0b commit 5452d92

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/librustdoc/html/markdown.rs

-1
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,6 @@ impl<'a, 'b, 'ids, I: Iterator<Item = SpannedEvent<'a>>> Iterator
539539
for event in &mut self.inner {
540540
match &event.0 {
541541
Event::End(Tag::Heading(..)) => break,
542-
Event::Start(Tag::Link(_, _, _)) | Event::End(Tag::Link(..)) => {}
543542
Event::Text(text) | Event::Code(text) => {
544543
id.extend(text.chars().filter_map(slugify));
545544
self.buf.push_back(event);

src/librustdoc/html/markdown/tests.rs

+7
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,13 @@ fn test_header() {
336336
<strong>Foo?</strong> &amp; *bar?!* <em><code>baz</code></em> ❤ #qux\
337337
</h5>",
338338
);
339+
t(
340+
"# Foo [bar](https://hello.yo)",
341+
"<h2 id=\"foo-bar\">\
342+
<a class=\"doc-anchor\" href=\"#foo-bar\">§</a>\
343+
Foo <a href=\"https://hello.yo\">bar</a>\
344+
</h2>",
345+
);
339346
}
340347

341348
#[test]

0 commit comments

Comments
 (0)