class Nokogiri::XML::Node

def inner_html *args

Get the inner_html for this node's Node#children
def inner_html *args
  children.map { |x| x.to_html(*args) }.join
end