YARD ドキュメントにいくつかのリンクを作成しようとしています。HTTP リンクを取得できます。
# I like {http://stackoverflow.com Stackoverflow}
としてレンダリングします
<p>I like <a href="http://stackoverflow.com">Stackoverflow</a></p>
しかし、電子メールのリンク:
# You can email the {mailto:bugs@myproject.com bugs} list
私に警告を与える:
[warn]: In file `':: Cannot resolve link to mailto:bugs@myprojectmailto:bugs@myproject.com from text:
そして次のようにレンダリングします
<p>You can email the <tt>bugs</tt> list</p>
リンクの通常の RDoc 構文を試しました。
bugs[mailto:bugs@myproject.com]
しかし、YARDはそれを無視しているようです。より信頼性の高い構文を知っている人はいますか?