1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/hamlit/parser.rb

14 lines
216 B
Ruby
Raw Normal View History

2015-10-06 23:14:45 +09:00
require 'haml'
module Hamlit
class Parser
def initialize(options = {})
@options = options
end
def call(template)
2015-10-07 00:18:41 +09:00
Haml::Parser.new(template, Haml::Options.defaults).parse
2015-10-06 23:14:45 +09:00
end
end
end