module ActionView::Helpers::TextHelper

def concat_with_haml(string, binding = nil)

def concat_with_haml(string, binding = nil)
  if is_haml?
    haml_buffer.buffer.concat(string)
  else
    concat_without_haml(string, binding)
  end
end