Handlebars-Net / Handlebars.Net

A real .NET Handlebars engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Setting a variable in the context

gcubar opened this issue · comments

How to define a helper to set, in the context, a variable with its respective value, and then handle it, either in an expression, or to print it.

{{set variableName "variableValue"}}
...
{{#if variableName}}
{{variableName}}
{{/if}}