module Nokogiri

def make(input = nil, opts = {}, &blk)

Create a new Nokogiri::XML::DocumentFragment
##
def make(input = nil, opts = {}, &blk)
  if input
    Nokogiri::HTML4.fragment(input).children.first
  else
    Nokogiri(&blk)
  end
end