haml--haml/lib/hamlit/compiler.rb

12 lines
175 B
Ruby

module Hamlit
class Compiler
def initialize(options = {})
@options = options
end
def call(template)
[:multi, [:static, 'Hamlit']]
end
end
end