Sha256: d1f84a25946553ba5a85d7762c5223fd348149ac9643db4932d535bcac8de67f
Contents?: true
Size: 836 Bytes
Versions: 11
Compression:
Stored size: 836 Bytes
Contents
module Padrino module Rendering class HamlitOutputBuffer < Temple::Generators::StringBuffer define_options :buffer_class => 'SafeBuffer' def call(exp) [preamble, compile(exp), postamble].flatten.compact.join('; '.freeze) end def create_buffer "#{buffer} = #{options[:buffer_class]}.new" end def concat(str) "#{buffer}.safe_concat((#{str}))" end end class HamlitTemplate < Hamlit::Template include SafeTemplate def precompiled_preamble(locals) "__in_hamlit_template = true\n" << super end end end end Tilt.prefer(Padrino::Rendering::HamlitTemplate, :haml) Padrino::Rendering.engine_configurations[:haml] = { :generator => Padrino::Rendering::HamlitOutputBuffer, :buffer => "@_out_buf", :use_html_safe => true, }
Version data entries
11 entries across 11 versions & 1 rubygems