1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 20:10:03 +00:00

Allow whitespace after \end in macro definitions

Fixes #1090
This commit is contained in:
Jermolene 2014-11-18 10:26:20 +00:00
parent b2550f31c2
commit 93cb03eeab

View File

@ -58,7 +58,7 @@ exports.parse = function() {
var reEnd;
if(this.match[3]) {
// If so, the end of the body is marked with \end
reEnd = /(\r?\n\\end(?:$|\r?\n))/mg;
reEnd = /(\r?\n\\end[^\S\n\r]*(?:$|\r?\n))/mg;
} else {
// Otherwise, the end of the definition is marked by the end of the line
reEnd = /(\r?\n)/mg;