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