Fix the macro definition regexp

print-window-tiddler
Jeremy Ruston 2012-12-26 19:33:11 +00:00
rodzic c1ec1578ec
commit 0e418f6e8d
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -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;
};
/*