module Hpricot::Builder

def text!(string)

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