mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
13 lines
260 B
Ruby
13 lines
260 B
Ruby
![]() |
require 'temple'
|
||
|
|
||
|
module Hamlit
|
||
|
RailsTemplate = Temple::Templates::Rails.create(
|
||
|
Hamlit::Engine,
|
||
|
generator: Temple::Generators::RailsOutputBuffer,
|
||
|
register_as: :haml,
|
||
|
escape_html: true,
|
||
|
streaming: true,
|
||
|
ugly: true,
|
||
|
)
|
||
|
end
|