Skip to content

v5.0.1

Latest
Compare
Choose a tag to compare
@blakek blakek released this 20 Jan 14:42
· 31 commits to master since this release

πŸ› Fix

Fixed an issue with leading spacing for repeating sections. For example:

<!-- Example Template -->
<ul>
  {{#people}}
  <li>{{name}}</li>
  {{/people}}
</ul>

<!-- v5.0.0 -->
<ul>
    <li>Eric</li>
  <li>Anne</li>
</ul>

<!-- v5.0.1 -->
<ul>
  <li>Eric</li>
  <li>Anne</li>
</ul>