class Nokogiri::XML::DocumentFragment

def to_xhtml(*args)

See Nokogiri::XML::NodeSet#to_xhtml
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