Don't trim macro definition bodies

print-window-tiddler
Jeremy Ruston 2012-12-29 22:27:51 +00:00
rodzic 12683c7d5f
commit 27ccb581be
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -68,7 +68,7 @@ exports.parse = function() {
var text,
endMatch = reEnd.exec(this.parser.source);
if(endMatch) {
text = this.parser.source.substring(this.parser.pos,endMatch.index).trim();
text = this.parser.source.substring(this.parser.pos,endMatch.index);
this.parser.pos = endMatch.index + endMatch[0].length;
} else {
// We didn't find the end of the definition, so we'll make it blank