module Haml::Helpers

def haml_concat(text = "")

Parameters:
  • text (#to_s) -- The text to output
def haml_concat(text = "")
  haml_buffer.buffer << haml_indent << text.to_s << "\n"
  ErrorReturn.new("haml_concat")
end