class Haml::Engine

def options_for_buffer

Returns:
  • ({Symbol => Object}) - The options hash
def options_for_buffer
  {
    :autoclose => @options[:autoclose],
    :preserve => @options[:preserve],
    :attr_wrapper => @options[:attr_wrapper],
    :ugly => @options[:ugly],
    :format => @options[:format],
    :encoding => @options[:encoding],
    :escape_html => @options[:escape_html],
  }
end