mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-24 00:50:28 +00:00
Removed erroneous HTML encode in plain text generation
This commit is contained in:
parent
9123c32782
commit
33ad4461db
@ -225,7 +225,7 @@ WikiTextParseTree.prototype.compileSubTreePlain = function(output,tree) {
|
||||
for(var t=0; t<tree.length; t++) {
|
||||
switch(tree[t].type) {
|
||||
case "text":
|
||||
this.pushString(output,utils.htmlEncode(tree[t].value));
|
||||
this.pushString(output,tree[t].value);
|
||||
break;
|
||||
case "entity":
|
||||
var c = utils.entityDecode(tree[t].value);
|
||||
|
Loading…
Reference in New Issue
Block a user