mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-07 17:53:26 -08:00
Removed erroneous HTML encode in plain text generation
This commit is contained in:
parent
9123c32782
commit
33ad4461db
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue