module Nokogiri

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

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