f11d0c9dc8
iOS chooses to render a number of Unicode entities, including '↩', as big colorful emoji. This can be defeated by appending Unicode VARIATION SELECTOR-15'/'VARIATION SELECTOR-16'. So we now append this character when escaping strings, for both '↩' and '↔'. If other characters prove problematic, they can simply be added to needsVariationSelector. Closes #5469.
12 lines
375 B
Markdown
12 lines
375 B
Markdown
```
|
|
% pandoc --id-prefix=foo
|
|
This.^[Has a footnote.]
|
|
^D
|
|
<p>This.<a href="#foofn1" class="footnote-ref" id="foofnref1" role="doc-noteref"><sup>1</sup></a></p>
|
|
<section class="footnotes" role="doc-endnotes">
|
|
<hr />
|
|
<ol>
|
|
<li id="foofn1" role="doc-endnote"><p>Has a footnote.<a href="#foofnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
|
|
</ol>
|
|
</section>
|
|
```
|