module Nokogiri::XML

def fragment string

Parse a fragment from +string+ in to a NodeSet.
###
def fragment string
  XML::DocumentFragment.parse(string)
end