mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
12 lines
175 B
Ruby
12 lines
175 B
Ruby
![]() |
module Hamlit
|
||
|
class Compiler
|
||
|
def initialize(options = {})
|
||
|
@options = options
|
||
|
end
|
||
|
|
||
|
def call(template)
|
||
|
[:multi, [:static, 'Hamlit']]
|
||
|
end
|
||
|
end
|
||
|
end
|