module Hpricot::Builder

def text!(string)

Write a +string+ to the HTML stream, making sure to escape it.
def text!(string)
  add_child Text.new(string.fast_xs)
end