emphasis(text)
Wraps `text` in emphasis for rdoc inline formatting
# File lib/rdoc/markdown.rb, line 634 def emphasis text if text =~ /\A[a-z\d.\/]+\z/ then "_#{text}_" else "<em>#{text}</em>" end end