haml--haml/lib/hamlit/parser.rb

14 lines
196 B
Ruby
Raw Normal View History

2015-10-06 10:14:45 -04:00
require 'haml'
module Hamlit
class Parser
def initialize(options = {})
@options = options
end
def call(template)
Haml::Parser.new(template, {}).parse
end
end
end