mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-25 01:20:30 +00:00
Fixed problem with property names that need quoting
This commit is contained in:
parent
ddfa6732a6
commit
6f027c3b49
@ -103,8 +103,9 @@ JavaScriptParseTree.prototype.renderNode = function(output,node) {
|
||||
output.push("}");
|
||||
break;
|
||||
case "PropertyAssignment":
|
||||
output.push("'");
|
||||
output.push(node.name);
|
||||
output.push(":");
|
||||
output.push("':");
|
||||
this.renderNode(output,node.value);
|
||||
break;
|
||||
case "BinaryExpression":
|
||||
|
Loading…
Reference in New Issue
Block a user