From d996b4438d5c7a0a82ab24e8f7278618f788ddec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Estev=C3=A3o=20Soares=20dos=20Santos?= Date: Wed, 22 Apr 2015 14:51:57 +0100 Subject: [PATCH] partial(showdown.js): enabled output modifiers --- src/showdown.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/showdown.js b/src/showdown.js index a1e694b..984b1de 100644 --- a/src/showdown.js +++ b/src/showdown.js @@ -245,6 +245,9 @@ showdown.Converter = function (converterOptions) { text = text.replace(/~T/g, '~'); // Run output modifiers + showdown.helper.forEach(globals.outputModifiers, function (ext) { + text = showdown.subParser('runExtension')(ext, text); + }); text = parsers.outputModifiers(text, options, globals); return text;