prettier/tests/handlebars/if-else.hbs

19 lines
191 B
Handlebars

<h1>
{{#if isAtWork}}
Ship that code!
{{else if isReading}}
You can finish War and Peace eventually...
{{else}}
Go to bed!
{{/if}}
</h1>
<h2>
{{#if a}}
A
{{else}}
B
{{/if}}
</h2>