samvincent / jekyll-haml

HAML html converter for Jekyll
MIT License
88 stars 40 forks source link

_layout haml not working #17

Closed sspreitzer closed 8 years ago

sspreitzer commented 8 years ago

In jekyll 3.1.6 _layout haml is not working.

_layouts/test.haml

!!!
%html
  {% include head.html %}
  %body
    {% include header.html %}
    .page-content
      .wrapper
        {{ content }}
    {% include footer.html %}

This does not get converted but the includes are working.

sspreitzer commented 8 years ago

Fix with PR #18

sspreitzer commented 8 years ago

PR merged.

samvincent commented 8 years ago

Pushed to rubygems. Thanks.

sspreitzer commented 8 years ago

Thank you!