Skip to content

Instantly share code, notes, and snippets.

@Yoxem
Forked from kuanyui/footnote.js
Last active December 23, 2015 11:22
Show Gist options
  • Save Yoxem/fd17557b5b4d2b2695cd to your computer and use it in GitHub Desktop.
Save Yoxem/fd17557b5b4d2b2695cd to your computer and use it in GitHub Desktop.
/*
footnote.js: A filter for Hexo to generate footnotes. Place this file in /scripts/footnote.js.
========================================================================
Author: kuanyui(azazabc123[at]g~~~m~~~a~~~i~~~l[dot]com), Yoxem (yoxem。tem98<at>nctu<d0t>edu<point>tw)
Date: 20140622
License: WTFPL 1.0
========================================================================
The following string in article
{fn|I'm the a lot lot of content.}
Will be converted into
<sup><a id="fnr.1" class="footref" href="#fn.1" name="fnr.1">1</a></sup>
And the following block will be added in the bottom of the article.
<div id="footnotes">
<h2 class="footnotes">Footnote</h2>
<div id="text-footnotes">
<div class="footdef"><sup><a id="fn.1" name="fn.1" class="footnum" href="#fnr.1">1</a></sup> <p class="footpara">I'm the a lot lot of content.</p></div>
<div class="footdef"><sup><a id="fn.2" name="fn.2" class="footnum" href="#fnr.2">2</a></sup> <p class="footpara">I'm the second content2</p></div>
...
</div>
</div>
Adding following CSS into your site is recommended:
.footpara {
display: inline;
margin-left: 5px;
}
*/
var lang = {"en_US": "Footnotes", "zh_TW": "腳註", "ja_JP": "脚注", "zh_CN": "脚注"};
if (lang[hexo.config.language]) {
var fnName = lang[hexo.config.language];
} else {
var fnName = "腳註";
}
hexo.extend.filter.register('pre', function(data, callback) {
var num = 0;
var footContent = "";
var RE = new RegExp('\\{fn\\|(.+?)\\}', 'g');
data.content = data.content.replace(RE, function(x, y) {
num += 1;
footContent += '<div class="footdef"><sup><a id="fn.' + num + '" name="fn.' + num + '" class="footnum" href="#fnr.' + num + '">' + num + '</a></sup> ' + y + '</div>';
return '<sup><a id="fnr.' + num + '" class="footref" href="#fn.' + num + '" name="fnr.' + num + '">' + num + '</a></sup>';
});
if (footContent.length > 0) {
data.content = data.content + '<div id="footnotes"><h3 class="footnotes">' + fnName + '</h3><div id="text-footnotes">' + footContent + '</div></div>';
}
callback(null, data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment