1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-01-11 18:00:26 +00:00

Relax requirement for newline after macro definition

This commit is contained in:
Jermolene 2014-08-07 16:00:20 +01:00
parent 7528f3d3cd
commit 5260899d8b

View File

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