Fix showdown patch registration
| @@ -1,6 +1,6 @@ | ||
| 1 | 1 | showdown.subParser('makehtml.unhashHTMLSpans', function (text, options, globals) { |
| 2 | 2 | 'use strict'; |
| 3 | 3 | text = globals.converter._dispatch('makehtml.unhashHTMLSpans.before', text, options, globals).getText(); |
| 4 | 4 | |
| 5 | 5 | for (var i = 0; i < globals.gHtmlSpans.length; ++i) { |
| 6 | 6 | var repText = globals.gHtmlSpans[i], |
| @@ -19,6 +19,6 @@ showdown.subParser('makehtml.unhashHTMLSpans', function (text, options, globals) | ||
| 19 | 19 | text = text.replace('¨C' + i + 'C', repText); |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | text = globals.converter._dispatch('makehtml.unhashHTMLSpans.after', text, options, globals).getText(); |
| 23 | 23 | return text; |
| 24 | 24 | }); |