Variable Buckets

Hashtag Buckets are a collection of Variables prefixed with the same key.   Bucket names are treated case insensitively by the Hashtag Framework.   The Empty Bucket command is demonstrated below.  
Processing this Hashtag Markup:
<#

set items.1.Name to "Test Item";
set items.1.Price to "$ 9.95";
set items.2.Name to "Another Test Item";
set items.2.Price to "$ 19.95";

#>
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.  
<#[items.1.Price]#> ⇒ $ 9.95
Processing this Hashtag Markup:
<# empty bucket items; #>
<#[items.1.Price]#> ⇒ 

The Hashtag Markup Language provides many methods for setting variable values, and using them later.

Variable Buckets can hold many values, processed together.   Variable Contexts enable safe injection anywhere.