class Padrino::Helpers::OutputHelpers::HamlHandler

def concat_to_template(text="")


@handler.concat_to_template("This will be output to the template buffer")
@example

Outputs the given text to the templates buffer directly
#
def concat_to_template(text="")
  template.haml_concat(text)
  nil
end