module Hpricot::Builder

def text(string)

Write a +string+ to the HTML stream without escaping it.
def text(string)
  @children << Text.new(string)
  nil
end