mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-13 21:02:02 -08:00
Added HTML decode of tiddler text fields when reading TiddlyWiki files
This commit is contained in:
parent
bc07764e40
commit
7e5309d2dd
1 changed files with 1 additions and 0 deletions
|
|
@ -22,6 +22,7 @@ tiddlyWikiInput.parseTiddlyWiki = function(tiddlywikidoc) {
|
|||
while(match && startPos < storeAreaPos[1]) {
|
||||
var endPos = endOfDivRegExp.lastIndex;
|
||||
var fields = tiddlerInput.parseTiddlerDiv(tiddlywikidoc.substring(startPos,endPos));
|
||||
fields.text = utils.htmlDecode(fields.text);
|
||||
results.push(fields);
|
||||
startPos = endPos;
|
||||
match = endOfDivRegExp.exec(tiddlywikidoc);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue