We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of just $1..$9, allow named parameters, e.g. $(foo}. The curly braces are needed to precisely identify the variable within its context.
$1
$9
$(foo}
This can be achieved using named parameters like so...
<<get $:"var1name:value1" $:"var2name:value2"
which results in these variables being usable in the template...
${var1name} => value1
${var2name} => value2
As a general convention, variable names must only contain alphanumeric characters.
Also make sure that params don't get substituted sequentially but at once, see TemplateTiddlersPlugin, e.g. START_TAG and END_TAG
START_TAG
END_TAG
supplant() — by Douglas Crockford
supplant()
with Stephan Hradek https://groups.google.com/d/msg/tiddlywiki/-l-VGBXb9vo/urCnXxqKmOYJ
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Idea
Instead of just
$1
..$9
, allow named parameters, e.g.$(foo}
. The curly braces are needed to precisely identify the variable within its context.This can be achieved using named parameters like so...
which results in these variables being usable in the template...
${var1name} => value1
${var2name} => value2
As a general convention, variable names must only contain alphanumeric characters.
Also make sure that params don't get substituted sequentially but at once, see TemplateTiddlersPlugin, e.g.
START_TAG
andEND_TAG
Consider
supplant()
— by Douglas CrockfordDiscussion
with Stephan Hradek
https://groups.google.com/d/msg/tiddlywiki/-l-VGBXb9vo/urCnXxqKmOYJ
The text was updated successfully, but these errors were encountered: