1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-06-03 23:24:07 +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 Wiki pragma rule for macro definitions
``` ```
/define name(param:defaultvalue,param2:defaultvalue) \define name(param:defaultvalue,param2:defaultvalue)
definition text, including $param$ markers definition text, including $param$ markers
/end \end
``` ```
\*/ \*/
@ -27,7 +27,7 @@ Instantiate parse rule
exports.init = function(parser) { exports.init = function(parser) {
this.parser = parser; this.parser = parser;
// Regexp to match // Regexp to match
this.matchRegExp = /^\\define\s*([^(\s]+)\(\s*([^)]*)\)(\r?\n)?/mg; this.matchRegExp = /^\\define\s+([^(\s]+)\(\s*([^)]*)\)(\r?\n)?/mg;
}; };
/* /*