Bracket matching fails inside of loop block
eltonjuan opened this issue · 1 comments
eltonjuan commented
Consider the following block of code:
{#items}
{price}
{/items}
Now, say I want to put the variable {title}
above price:
{#items}
{title}
{price}
{/items}
When I type the first bracket in {title}
, bracket matching outputs the following:
{#items}
{
{price}
}
{/items}
Instead of what I would expect:
{#items}
{}
{price}
{/items}
zanuka commented
good catch @eltonjuan , fixing now