/* === SHOWDOWN FOOTNOTES === */ /* this is an extension for showdown, a markdown to html converter. */ /* this extension converts markdown style footnotes into HTML */ /* adapted from https://github.com/Kriegslustig/showdown-footnotes */ define(['showdown'], function (showdown) { var converter = new showdown.Converter(); return showdown.extension('footnotes', function() { var extension1 = { type: 'lang', filter: function filter(text) { return text.replace(/^\[\^([\d\w]+)\]:\s*((\n+(\s{2,4}|\t).+)+)$/mg, function (str, name, rawContent, _, padding) { var content = converter.makeHtml(rawContent.replace(new RegExp('^' + padding, 'gm'), '')); return '