Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
conv_markup(txt)
public
Convert markup into display form
# File lib/rdoc/ri/formatter.rb, line 113
def conv_markup(txt)
txt = txt.gsub(%{<tt>(.*?)</tt>}, '+\1+')
txt.gsub!(%{<code>(.*?)</code>}, '+\1+')
txt.gsub!(%{<b>(.*?)</b>}, '*\1*')
txt.gsub!(%{<em>(.*?)</em>}, '_\1_')
txt
end