1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-25 01:20:30 +00:00

Fixed typo in hardlinebreak parser

This commit is contained in:
Jermolene 2013-12-14 17:42:50 +00:00
parent 34e6d79ef6
commit 57adbe5bf7

View File

@ -29,7 +29,7 @@ exports.types = {inline: true};
exports.init = function(parser) { exports.init = function(parser) {
this.parser = parser; this.parser = parser;
// Regexp to match // Regexp to match
this.matchRegExp = /"""(?:\r?\n)+/mg; this.matchRegExp = /"""(?:\r?\n)?/mg;
}; };
exports.parse = function() { exports.parse = function() {