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/compiler.rb

12 lines
175 B
Ruby
Raw Normal View History

2015-10-06 23:14:45 +09:00
module Hamlit
class Compiler
def initialize(options = {})
@options = options
end
def call(template)
[:multi, [:static, 'Hamlit']]
end
end
end