class Nokogiri::XML::Builder

def << string

Append the given raw XML +string+ to the document
##
def << string
  @doc.fragment(string).children.each { |x| insert(x) }
end