This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.
conv_html(txt)
convert HTML entities back to ASCII
# File lib/rdoc/ri/ri_formatter.rb, line 79 def conv_html(txt) txt. gsub(/>/, '>'). gsub(/</, '<'). gsub(/"/, '"'). gsub(/&/, '&') end