conv_html(txt)
Convert HTML entities back to ASCII
# File lib/rdoc/ri/formatter.rb, line 102 def conv_html(txt) txt = txt.gsub(/>/, '>') txt.gsub!(/</, '<') txt.gsub!(/"/, '"') txt.gsub!(/&/, '&') txt end