module Nokogiri::XML

def fragment(string, options = ParseOptions::DEFAULT_XML, &block)

Parse a fragment from +string+ in to a NodeSet.
###
def fragment(string, options = ParseOptions::DEFAULT_XML, &block)
  XML::DocumentFragment.parse(string, options, &block)
end