meteor-jade-handlebars icon indicating copy to clipboard operation
meteor-jade-handlebars copied to clipboard

these codes will cause "indent error".

Open crapthings opened this issue 12 years ago • 0 comments

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 ?

crapthings avatar Feb 06 '13 09:02 crapthings