# File lib/escape.rb, line 218
218:   def html_text(str)
219:     str.gsub(/[&<>]/) {|ch| HTML_TEXT_ESCAPE_HASH[ch] }
220:   end