jimsynz / hamlbars

Some extensions to HAML to allow generation of Handlebars templates.
https://github.com/jamesotron/hamlbars.git
MIT License
179 stars 43 forks source link

Improve readability of outputted hbs #69

Open mplatts opened 8 years ago

mplatts commented 8 years ago

old:

{{#if messages}}<ul class='alert'>
  {{#each messages}}<li>{{{this}}}</li>{{/each}}
</ul>{{/if}}

with my modifications:

{{#if messages}}
  <ul class='alert'>
    {{#each messages}}
      <li>{{{this}}}</li>
    {{/each}}
  </ul>
{{/if}}