-
-
Notifications
You must be signed in to change notification settings - Fork 278
Closed
alphagov/whitehall
#3511Labels
Description
It looks like abbreviations don't work in footnotes, with the following Markdown input I would expect to see an abbr tag in both the paragraph at the beginning and then in the footnote paragraph as well, but it doesn't appear in the footnote.
Input:
There is a TXT file here. [^1]
*[TXT]: Text File
[^1]: A TXT file.Output:
<p>There is a <abbr title="Text File">TXT</abbr> file here. <sup id="fnref:1"><a href="#fn:1" class="footnote">1</a></sup></p>
<div class="footnotes">
<ol>
<li id="fn:1">
<p>A TXT file. <a href="#fnref:1" class="reversefootnote">↩</a></p>
</li>
</ol>
</div>Reactions are currently unavailable