module Hpricot::Traverse

def inner_text

HTML elements are removed.
Builds a string from the text contained in this node. All
def inner_text
  if respond_to? :children
    children.map { |x| x.inner_text }.join
  end
end