zalando/beard

Beard trims the spaces right after the interpolations in {{for}} statements

Closed this issue · 1 comments

This Beard template:

{{for user in users}}
<div>Hello {{user.name}}</div>
{{/for}}

is rendering:

<div>HelloDan</div>
<div>HelloCesar</div>

Related with #7

Spaces are being treated as whites, so they are being discarded.