forked from commonmark/cmark
-
Notifications
You must be signed in to change notification settings - Fork 202
Closed
Description
[a [^b] c](https://example.com)
[^b]: asdRenders (formatted w/ whitespace):
<p dir="auto">
<a href="https://example.com">
a
<sup></sup>
</a>
<a
href="#user-content-fn-b"
id="user-content-fnref-b"
data-footnote-ref=""
aria-describedby="footnote-label"
>1</a>
c
</p>Rendered here:
Expected. Either (when not using HTML parsing to sanitize):
<p>
<a href="https://example.com">
a
<sup>
<a
href="#user-content-fn-b"
id="user-content-fnref-b"
data-footnote-ref=""
aria-describedby="footnote-label"
>1</a>
</sup>
c
</a>
</p>Or (when not generating footnotes in certain disallowed tags):
<p>
<a href="https://example.com">
a [^b] c
</a>
</p>Footnotes
-
asd ↩
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Fields
Give feedbackNo fields configured for issues without a type.