module Haml::Helpers

def succeed(str, &block)

Other tags:
    Yield: - A block of Haml to append to

Parameters:
  • str (String) -- The string to add after the Haml
def succeed(str, &block)
  "#{capture_haml(&block).chomp}#{str}\n"
end