Allow whitespace after first line of multiline macro

Fixes the remaining part of #482
print-window-tiddler
Jermolene 2014-08-11 13:52:10 +01:00
rodzic 57878631e4
commit b2e1dd2138
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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