mirror of
https://github.com/yuin/goldmark
synced 2025-03-04 23:04:52 +00:00
33 lines
903 B
Text
33 lines
903 B
Text
1
|
|
//- - - - - - - - -//
|
|
That's some text with a footnote.[^1]
|
|
|
|
[^1]: And that's the footnote.
|
|
|
|
That's the second paragraph.
|
|
//- - - - - - - - -//
|
|
<p>That's some text with a footnote.<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup></p>
|
|
<section class="footnotes" role="doc-endnotes">
|
|
<hr>
|
|
<ol>
|
|
<li id="fn:1" role="doc-endnote">
|
|
<p>And that's the footnote.</p>
|
|
<p>That's the second paragraph.<a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩</a></p>
|
|
</li>
|
|
</ol>
|
|
</section>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
3
|
|
//- - - - - - - - -//
|
|
[^000]:0 [^]:
|
|
//- - - - - - - - -//
|
|
<section class="footnotes" role="doc-endnotes">
|
|
<hr>
|
|
<ol>
|
|
<li id="fn:1" role="doc-endnote">
|
|
<p>0 [^]:<a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩</a></p>
|
|
</li>
|
|
</ol>
|
|
</section>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|