module Padrino::Helpers::OutputHelpers

def concat_content(text="")

Other tags:
    Api: - semipublic

Parameters:
  • text (String) --
def concat_content(text="")
  handler = find_proper_handler
  if handler && handler.is_type?
    handler.concat_to_template(text)
  else # theres no template to concat, return the text directly
    text
  end
end