Append Variable Commands
This page uses Hashtag Append commands to demonstrates altering Variable values.
Processing this Hashtag Markup:
<#
set my_var to "the quick brown fox";
append my_var with " jumps over the lazy dog";
#>
Note: Hashtag Markup is shown below <# in bold #>.
The value generated by processing the Hashtag Markup, and applying any Variable Contexts, is injected into this HTML page after the ⇒ symbol.
<#[my_var]#> ⇒ the quick brown fox jumps over the lazy dog
Processing this Hashtag Markup:
<#
set my_var to "";
append my_var with "first" using ", ";
append my_var with "second" using ", ";
append my_var with "third" using ", ";
#>
<#[my_var]#> ⇒ first, second, third