1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-01 00:10:45 +00:00

Removed erroneous HTML encode in plain text generation

This commit is contained in:
Jeremy Ruston 2012-01-23 18:45:50 +00:00
parent 9123c32782
commit 33ad4461db

View File

@ -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);