@@ -20,6 +20,7 @@ $(document).ready(function () {
// Create footnotes.
var $notes = $('<ol id="notes"></ol>').insertBefore('#footer');
$('span.footnote').each (function (index) {
+ $('<sup>' + (index + 1) + '</sup>').insertBefore(this);
$(this).appendTo($notes).wrap('<li></li>');
});