-
-
Save tamouse/6819709 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# _plugins/haml_converter.rb | |
module Jekyll | |
class HamlConverter < Converter | |
safe true | |
def setup | |
return if @setup | |
require 'haml' | |
@setup = true | |
rescue | |
STDERR.puts 'do `gem install haml`' | |
raise FatalException.new("Missing dependency: haml") | |
end | |
def matches(ext) | |
ext =~ /haml/i | |
end | |
def output_ext(ext) | |
".html" | |
end | |
def convert(content) | |
setup | |
engine = Haml::Engine.new(content) | |
engine.render | |
end | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
--- | |
<!-- _layouts/home.haml --> | |
%html | |
%head | |
%title= page.title | |
%body | |
#container | |
#header HEADER | |
#content | |
= content | |
#footer FOOTER |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: home | |
title: Home Page | |
--- | |
%h1 Hello World? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment