class Hpricot::Elements

def append(str = nil, &blk)

Pass in an HTML +str+, which is turned into Hpricot elements.
Add to the end of the contents inside each element in this list.
def append(str = nil, &blk)
  each { |x| x.html(x.children + x.make(str, &blk)) }
end