Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 426 Bytes

cheatsheet.md

File metadata and controls

21 lines (20 loc) · 426 Bytes

Conditionals

{{if(options.someval === "someothervalue")}}
Display this!
{{#else}}
They don't equal
{{/if}}

Looping over arrays

{{each(options.someArray)}}
The current array item is {{@this}}, the current index is {{@index}}
{{/each}}

Looping over objects

{{foreach(options.someObject)}}
The current object key is {{@key}}, and the value is {{@this}}
{{/foreach}}