mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-07 01:33:13 -08:00
Allow whitespace after first line of multiline macro
Fixes the remaining part of #482
This commit is contained in:
parent
57878631e4
commit
b2e1dd2138
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ Instantiate parse rule
|
|||
exports.init = function(parser) {
|
||||
this.parser = parser;
|
||||
// Regexp to match
|
||||
this.matchRegExp = /^\\define\s+([^(\s]+)\(\s*([^)]*)\)(\r?\n)?/mg;
|
||||
this.matchRegExp = /^\\define\s+([^(\s]+)\(\s*([^)]*)\)(\s*\r?\n)?/mg;
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue