meteor-jade-handlebars
meteor-jade-handlebars copied to clipboard
these codes will cause "indent error".
template(name='/sign')
{{#if currentUser}}
h1 {{displayName}}
{{else}}
{{> signin}}
{{/if}}
and these will not.
template(name='/sign')
{{#if currentUser}}
h1 {{displayName}}
{{else}}
{{> signin}}
{{/if}}
considered as bug ?