Skip to content

Commit

Permalink
fix readMacroParams to allow <<tiddler name:[[a {{DDn{b}}} c]]>> and …
Browse files Browse the repository at this point in the history
…such

See TiddlyWiki#178
  • Loading branch information
YakovL authored Oct 8, 2017
1 parent aeb45c0 commit 199c1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/Strings.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ String.prototype.parseParams = function(defaultName,defaultValue,allowEval,noNam
// an *evaluated* parameter: e.g. {{config.options.txtUserName}} results in the current user's name.
String.prototype.readMacroParams = function(notAllowEval)
{
var p = this.parseParams("list",null,!notAllowEval,true);
var p = this.parseParams("list",null,!notAllowEval);
var t,n = [];
for(t=1; t<p.length; t++)
n.push(p[t].value);
Expand Down

0 comments on commit 199c1ad

Please sign in to comment.