module Haml::Helpers

def precede(char, &block)


*Not really

Produces:

%span.small Not really
= precede '*' do

For example:
with no whitespace between.
Prepends the given character to the beginning of the Haml block,
def precede(char, &block)
  "#{char}#{capture_haml(&block).chomp}\n"
end