class Haml::RailsTemplate

def call(template, source = nil)

def call(template, source = nil)
  source ||= template.source
  options = RailsTemplate.options
  # Make the filename available in parser etc.
  if template.respond_to?(:identifier)
    options = options.merge(filename: template.identifier)
  end
  # https://github.com/haml/haml/blob/4.0.7/lib/haml/template/plugin.rb#L19-L20
  # https://github.com/haml/haml/blob/4.0.7/lib/haml/options.rb#L228
  if template.respond_to?(:type) && template.type == 'text/xml'
    options = options.merge(format: :xhtml)
  end
  if ActionView::Base.try(:annotate_rendered_view_with_filenames) && template.format == :html
    options = options.merge(
      preamble: "<!-- BEGIN #{template.short_identifier} -->\n",
      postamble: "<!-- END #{template.short_identifier} -->\n",
    )
  end
  Engine.new(options).call(source)
end

def options

def options
  @options ||= {
    generator:     Temple::Generators::RailsOutputBuffer,
    use_html_safe: true,
    streaming:     true,
    buffer_class:  'ActionView::OutputBuffer',
    disable_capture: true,
  }
end

def set_options(opts)

def set_options(opts)
  options.update(opts)
end

def supports_streaming?

def supports_streaming?
  RailsTemplate.options[:streaming]
end