module Hpricot::Traverse

def make(input = nil, &blk)

the options used to create the container document.
Parses an HTML string, making an HTML fragment based on
def make(input = nil, &blk)
  if parent and parent.respond_to? :make
    parent.make(input, &blk)
  else
    Hpricot.make(input, &blk).children
  end
end