mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-07 09:42:52 -08:00
Fix importing blank fields from TiddlyWiki files
This commit is contained in:
parent
3fa4b00ede
commit
86d182fd51
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ var parseTiddlerDiv = function(text /* [,fields] */) {
|
|||
attrMatch = attrRegExp.exec(match[1]);
|
||||
if(attrMatch) {
|
||||
var name = attrMatch[1];
|
||||
var value = attrMatch[2] || attrMatch[3];
|
||||
var value = attrMatch[2] !== undefined ? attrMatch[2] : attrMatch[3];
|
||||
result[name] = value;
|
||||
}
|
||||
} while(attrMatch);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue