1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-02 08:46:56 +00:00

Fix the macro definition regexp

This commit is contained in:
Jeremy Ruston 2012-12-26 19:33:11 +00:00
parent c1ec1578ec
commit 0e418f6e8d

View File

@ -6,9 +6,9 @@ module-type: wikirule
Wiki pragma rule for macro definitions
```
/define name(param:defaultvalue,param2:defaultvalue)
\define name(param:defaultvalue,param2:defaultvalue)
definition text, including $param$ markers
/end
\end
```
\*/
@ -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*([^)]*)\)(\r?\n)?/mg;
};
/*