class Nokogiri::XML::DocumentFragment
def to_xhtml(*args)
Convert this DocumentFragment to xhtml
##
def to_xhtml(*args) if Nokogiri.jruby? options = args.first.is_a?(Hash) ? args.shift : {} options[:save_with] ||= Node::SaveOptions::DEFAULT_XHTML args.insert(0, options) end children.to_xhtml(*args) end