mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
partial(showdown.js): enabled output modifiers
This commit is contained in:
parent
0fd10cb56a
commit
d996b4438d
|
@ -245,6 +245,9 @@ showdown.Converter = function (converterOptions) {
|
||||||
text = text.replace(/~T/g, '~');
|
text = text.replace(/~T/g, '~');
|
||||||
|
|
||||||
// Run output modifiers
|
// Run output modifiers
|
||||||
|
showdown.helper.forEach(globals.outputModifiers, function (ext) {
|
||||||
|
text = showdown.subParser('runExtension')(ext, text);
|
||||||
|
});
|
||||||
text = parsers.outputModifiers(text, options, globals);
|
text = parsers.outputModifiers(text, options, globals);
|
||||||
|
|
||||||
return text;
|
return text;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user