class Hpricot::Elem

def render_children(so_far, tabs, options)

def render_children(so_far, tabs, options)
  (self.children || []).inject(so_far) do |output, child|
    output + child.to_haml(tabs + 1, options)
  end
end