Преглед на файлове

Fix the bug by removing duplicated codeblock

See src/subParsers/outputModifiers.js
Stefano Brilli преди 10 години
родител
ревизия
b63baee9f5
променени са 1 файла, в които са добавени 0 реда и са изтрити 3 реда
  1. 0 3
      src/showdown.js

+ 0 - 3
src/showdown.js

@@ -272,9 +272,6 @@ 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;