From 57adbe5bf78347f6863f3aad0cd63bb3d82300be Mon Sep 17 00:00:00 2001 From: Jermolene Date: Sat, 14 Dec 2013 17:42:50 +0000 Subject: [PATCH] Fixed typo in hardlinebreak parser --- core/modules/parsers/wikiparser/rules/hardlinebreaks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/parsers/wikiparser/rules/hardlinebreaks.js b/core/modules/parsers/wikiparser/rules/hardlinebreaks.js index 85a5d7e5d..7573a5501 100644 --- a/core/modules/parsers/wikiparser/rules/hardlinebreaks.js +++ b/core/modules/parsers/wikiparser/rules/hardlinebreaks.js @@ -29,7 +29,7 @@ exports.types = {inline: true}; exports.init = function(parser) { this.parser = parser; // Regexp to match - this.matchRegExp = /"""(?:\r?\n)+/mg; + this.matchRegExp = /"""(?:\r?\n)?/mg; }; exports.parse = function() {