# File lib/celerity/util.rb, line 83
    def normalize_text(string)
      string.gsub("\302\240", ' '). # non-breaking space 00A0
             gsub(/\n|\t/, '').     # get rid of newlines/tabs
             strip
    end