module Hpricot::Traverse
def inner_text
Builds a string from the text contained in this node. All
def inner_text if respond_to?(:children) and children children.map { |x| x.inner_text }.join else "" end end
def inner_text if respond_to?(:children) and children children.map { |x| x.inner_text }.join else "" end end