Skip to content

Commit

Permalink
Merge pull request #11 from MarkoCindric-xyz/main
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmayer authored Jun 13, 2024
2 parents 555ece8 + 151059e commit fd13a28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This will appear as, roughly:

Here’s my written text<sup>1</sup>

1. and here is a footnote ↩
1. and here is a footnote ↩&#xFE0E;

This should work with any content format (reST, Markdown, et cetera), because
it looks for `[ref]` and `[/ref]` once the conversion to HTML has happened.
Expand Down
2 changes: 1 addition & 1 deletion pelican/plugins/simple_footnotes/simple_footnotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def parse_for_footnotes(article_or_page_generator):
backlink = dom.createElement("a")
backlink.setAttribute("href", "#%s" % fnbackid)
backlink.setAttribute("class", "simple-footnote-back")
backlink.appendChild(dom.createTextNode("\u21a9"))
backlink.appendChild(dom.createTextNode("\u21a9\ufe0e"))
li.appendChild(dom.createTextNode(" "))
li.appendChild(backlink)
ol.appendChild(li)
Expand Down

0 comments on commit fd13a28

Please sign in to comment.