Module Merb::Template::Haml::Mixin
In: merb-haml/lib/merb-haml/template.rb

Methods

Public Instance methods

Parameters

string<String>:The string to add to the HAML buffer.
binding<Binding>:Not used by HAML, but is necessary to conform to the concat_* interface.

[Source]

    # File merb-haml/lib/merb-haml/template.rb, line 30
30:       def concat_haml(string, binding)
31:         haml_buffer.buffer << string
32:       end

[Validate]