We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Take following input. Handlebars if-else, with div tags within each condition branch:
div
{{#if condition}}<div></div>{{else}}<div></div>{{/if}}
This will generate the following output:
{{#if condition}} <div></div>{{else}} <div></div> {{/if}}
I would have expected this.. {{else}} tag drops to same indentation level as the {{#if}}:
{{else}}
{{#if}}
{{#if condition}} <div></div> {{else}} <div></div> {{/if}}
The text was updated successfully, but these errors were encountered:
921cd38
No branches or pull requests
Take following input. Handlebars if-else, with
div
tags within each condition branch:This will generate the following output:
I would have expected this..
{{else}}
tag drops to same indentation level as the{{#if}}
:The text was updated successfully, but these errors were encountered: