Fix showdown patch registration

da96bf3c2950163cb4efbc4a4583b58a8214f608

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +3 -3Showing whitespace changes
public/lib/showdown-patch.js+3 -3
@@ -1,6 +1,6 @@
11showdown.subParser('makehtml.unhashHTMLSpans', function (text, options, globals) {
22 'use strict';
33 text = globals.converter._dispatch('makehtml.unhashHTMLSpans.before', text, options, globals).getText();
44
55 for (var i = 0; i < globals.gHtmlSpans.length; ++i) {
66 var repText = globals.gHtmlSpans[i],
@@ -19,6 +19,6 @@ showdown.subParser('makehtml.unhashHTMLSpans', function (text, options, globals)
1919 text = text.replace('¨C' + i + 'C', repText);
2020 }
2121
2222 text = globals.converter._dispatch('makehtml.unhashHTMLSpans.after', text, options, globals).getText();
2323 return text;
2424});