gen_url(url, text)
Creates a Markdown-style URL from url with text.
# File lib/rdoc/markup/to_markdown.rb, line 139 def gen_url url, text scheme, url, = parse_url url "[#{text.sub(%r{^#{scheme}:/*}i, '')}](#{url})" end