diff --git a/core/modules/parsers/wikiparser/rules/html.js b/core/modules/parsers/wikiparser/rules/html.js index 6ba685db2..dd1ea4540 100644 --- a/core/modules/parsers/wikiparser/rules/html.js +++ b/core/modules/parsers/wikiparser/rules/html.js @@ -103,7 +103,6 @@ exports.parseTag = function(source,pos,options) { pos = token.end; // Check that the tag is terminated by a space, / or > if(!$tw.utils.parseWhiteSpace(source,pos) && !(source.charAt(pos) === "/") && !(source.charAt(pos) === ">") ) { -console.log("Aborting illegal element tag") return null; } // Process attributes