Skip to content

{{#let}} section helpers

Choose a tag to compare

@justinbmeyer justinbmeyer released this 18 Dec 02:11
· 149 commits to master since this release

Completes this proposal to allow let to be scoped like:

{{#let field="abc"}}
    <p>{{field}}</p>
{{/let}}
<!-- field is no longer available -->
{{#let field="def"}}
    <div>{{field}}</div>
{{/let}}