Parse typed blocks with the new parser

print-window-tiddler
Jeremy Ruston 2013-10-21 20:20:44 +01:00
rodzic a99f912bad
commit c96cb6e956
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -57,7 +57,7 @@ exports.parse = function() {
this.parser.pos = this.parser.sourceLength;
}
// Parse the block according to the specified type
var parser = this.parser.wiki.parseText(parseType,text,{defaultType: "text/plain"});
var parser = this.parser.wiki.new_parseText(parseType,text,{defaultType: "text/plain"});
// If there's no render type, just return the parse tree
if(!renderType) {
return parser.tree;