Removed obsolete context handling in wikitext parse trees

print-window-tiddler
Jeremy Ruston 2012-01-07 21:54:00 +00:00
rodzic 44ef159243
commit b959c6ea22
1 zmienionych plików z 0 dodań i 6 usunięć

Wyświetl plik

@ -175,9 +175,6 @@ WikiTextParseTree.prototype.compileSubTreeHtml = function(tree) {
case "img":
this.compileElementHtml(tree[t],{selfClosing: true}); // Self closing elements
break;
case "context":
//compileSubTree(tree[t].children);
break;
case "macro":
this.compileMacroCall("text/html",tree[t].name,tree[t].params);
break;
@ -230,9 +227,6 @@ WikiTextParseTree.prototype.compileSubTreePlain = function(tree) {
case "img":
this.compileElementPlain(tree[t],{selfClosing: true}); // Self closing elements
break;
case "context":
//compileSubTree(tree[t].children);
break;
case "macro":
this.compileMacroCall("text/plain",tree[t].name,tree[t].params);
break;