I'm trying to create some links in my YARD documentation. I can get an HTTP link:
# I like {http://stackoverflow.com Stackoverflow}
renders as
<p>I like <a href="http://stackoverflow.com">Stackoverflow</a></p>
But an email link:
# You can email the {mailto:bugs@myproject.com bugs} list
gives me a warning:
[warn]: In file `':: Cannot resolve link to mailto:bugs@myprojectmailto:bugs@myproject.com from text:
and renders as
<p>You can email the <tt>bugs</tt> list</p>
I've tried the regular RDoc syntax for links:
bugs[mailto:bugs@myproject.com]
but YARD seems to ignore that. Does anyone know of a more reliable syntax?