mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-05-25 06:42:18 +00:00
Refactored stringily not to add the double quotes
This commit is contained in:
@@ -52,10 +52,10 @@ JavaScriptParseTree.prototype.renderNode = function(output,node) {
|
||||
var p;
|
||||
switch(node.type) {
|
||||
case "StringLiteral":
|
||||
output.push(utils.stringify(node.value));
|
||||
output.push('"' + utils.stringify(node.value) + '"');
|
||||
break;
|
||||
case "StringLiterals":
|
||||
output.push(utils.stringify(node.value.join("")));
|
||||
output.push('"' + utils.stringify(node.value.join("")) + '"');
|
||||
break;
|
||||
case "FunctionCall":
|
||||
output.push("(");
|
||||
|
||||
Reference in New Issue
Block a user