mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 03:57:21 +00:00
Removed obsolete context handling in wikitext parse trees
This commit is contained in:
parent
44ef159243
commit
b959c6ea22
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user