-
Notifications
You must be signed in to change notification settings - Fork 434
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #536 from Crozzers/footnote-order-of-appearance
Maintain order of appearance in footnotes
- Loading branch information
Showing
5 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<hr /> | ||
|
||
<h2>title: testing the footnotes bug</h2> | ||
|
||
<p>Lorem ipsum dolor sit amet. Aliqua cillum, eu velit.<sup class="footnote-ref" id="fnref-note1"><a href="#fn-note1">3</a></sup> Velit deserunt adipiscing adipiscing ullamco exercitation.</p> | ||
|
||
<ul> | ||
<li>this is a list item</li> | ||
<li>this is a list item<sup class="footnote-ref" id="fnref-note2"><a href="#fn-note2">1</a></sup></li> | ||
<li>this is a list item<sup class="footnote-ref" id="fnref-note3"><a href="#fn-note3">2</a></sup></li> | ||
</ul> | ||
|
||
<p>Lorem ipsum dolor sit amet. Adipiscing<sup class="footnote-ref" id="fnref-note4"><a href="#fn-note4">4</a></sup> adipiscing ullamco, exercitation sint. Exercitation sint, fugiat exercitation voluptate amet.</p> | ||
|
||
<div class="footnotes"> | ||
<hr /> | ||
<ol> | ||
<li id="fn-note1"> | ||
<p>this should be the first note <a href="#fnref-note1" class="footnoteBackLink" title="Jump back to footnote 1 in the text.">↩</a></p> | ||
</li> | ||
|
||
<li id="fn-note2"> | ||
<p>this should be the second note <a href="#fnref-note2" class="footnoteBackLink" title="Jump back to footnote 2 in the text.">↩</a></p> | ||
</li> | ||
|
||
<li id="fn-note3"> | ||
<p>this should be the third note <a href="#fnref-note3" class="footnoteBackLink" title="Jump back to footnote 3 in the text.">↩</a></p> | ||
</li> | ||
|
||
<li id="fn-note4"> | ||
<p>this should be the fourth note <a href="#fnref-note4" class="footnoteBackLink" title="Jump back to footnote 4 in the text.">↩</a></p> | ||
</li> | ||
</ol> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"extras": ["footnotes"]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: testing the footnotes bug | ||
--- | ||
Lorem ipsum dolor sit amet. Aliqua cillum, eu velit.[^note1] Velit deserunt adipiscing adipiscing ullamco exercitation. | ||
|
||
- this is a list item | ||
- this is a list item[^note2] | ||
- this is a list item[^note3] | ||
|
||
Lorem ipsum dolor sit amet. Adipiscing[^note4] adipiscing ullamco, exercitation sint. Exercitation sint, fugiat exercitation voluptate amet. | ||
|
||
[^note1]: this should be the first note | ||
[^note2]: this should be the second note | ||
[^note3]: this should be the third note | ||
[^note4]: this should be the fourth note |