class Nokogiri::XML::NodeSet

def inner_html(*args)

Get the inner html of all contained Node objects
##
def inner_html(*args)
  collect { |j| j.inner_html(*args) }.join("")
end