kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Added HTML decode of tiddler text fields when reading TiddlyWiki files
rodzic
bc07764e40
commit
7e5309d2dd
|
@ -22,6 +22,7 @@ tiddlyWikiInput.parseTiddlyWiki = function(tiddlywikidoc) {
|
||||||
while(match && startPos < storeAreaPos[1]) {
|
while(match && startPos < storeAreaPos[1]) {
|
||||||
var endPos = endOfDivRegExp.lastIndex;
|
var endPos = endOfDivRegExp.lastIndex;
|
||||||
var fields = tiddlerInput.parseTiddlerDiv(tiddlywikidoc.substring(startPos,endPos));
|
var fields = tiddlerInput.parseTiddlerDiv(tiddlywikidoc.substring(startPos,endPos));
|
||||||
|
fields.text = utils.htmlDecode(fields.text);
|
||||||
results.push(fields);
|
results.push(fields);
|
||||||
startPos = endPos;
|
startPos = endPos;
|
||||||
match = endOfDivRegExp.exec(tiddlywikidoc);
|
match = endOfDivRegExp.exec(tiddlywikidoc);
|
||||||
|
|
Ładowanie…
Reference in New Issue