# File rexml/text.rb, line 119
  def Text.pull source
			md = source.match(PATTERN, true)
			raise "no text to add" if md[0].length == 0
			return Text::unnormalize(md[1])
		end