From da298f037ddcce5eaa4d549a14a9eb253ba1a6a0 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Wed, 12 Oct 2016 15:50:43 +0100 Subject: [PATCH] Remove extraneous console.log() Fixing f97c1226aac9f3a5b563fc8d95bfeff91b8ab810 --- core/modules/parsers/wikiparser/rules/html.js | 1 - 1 file changed, 1 deletion(-) 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