samvincent / jekyll-haml

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

Plugin seems to be without effect #20

Closed joallard closed 7 years ago

joallard commented 7 years ago
Given a Gemfile:
"""
source "https://rubygems.org"

gem "jekyll"

group :jekyll_plugins do
  gem "jekyll-haml"
end
"""

And `foo.haml` containing `%h1 Foo`
When I run `jekyll b`
Then `_site/foo.html` doesn't exist
And `_site/foo.haml` does exist

Jekyll 3.2, 3.3.0, and latest JH. Not sure what's wrong.

joallard commented 7 years ago

Resolution: Add empty front matter at the top. :|