New feature added!
You can now reference a template instead of a string in the ~var type declarations.
for example:
no variables referencing variables though. If you really needed to, you could always call a template which then referenced the variable from there.
EDIT: I may add support for vars referencing vars at some point though... The way I would do it would also clean my code up a bit. hmn...
You can now reference a template instead of a string in the ~var type declarations.
for example:
Code:
(exampleTemplate){"this is basically called conditionally now.\n"}
(~exampleVariable){"string literal\n":[exampleTemplate]}
no variables referencing variables though. If you really needed to, you could always call a template which then referenced the variable from there.
EDIT: I may add support for vars referencing vars at some point though... The way I would do it would also clean my code up a bit. hmn...