如何在 YARD 文档中创建任意链接?
我正在尝试在我的 YARD 文档中创建一些链接。我可以获得一个 HTTP 链接:
# I like {http://stackoverflow.com Stackoverflow}
呈现为
<p>I like <a href="http://stackoverflow.com">Stackoverflow</a></p>
但是电子邮件链接:
# You can email the {mailto:[email protected] bugs} list
给了我一个警告:
[warn]: In file `':: Cannot resolve link to mailto:bugs@myprojectmailto:[email protected] from text:
并呈现为
<p>You can email the <tt>bugs</tt> list</p>
我尝试过链接的常规 RDoc 语法:
bugs[mailto:[email protected]]
但 YARD 似乎忽略了这一点。有谁知道更可靠的语法?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
深入研究 YARD 的代码会发现问题:
gems/yard-0.2.3.5/lib/yard
有一行 (73):不允许 mailto 链接。你可以用它替换这条线
,它会按照你想要的方式工作......并不完全理想,但这就是我现在所拥有的。
Digging into YARD's code shows the problem: in
gems/yard-0.2.3.5/lib/yard
there is the line (73):which doesn't allow mailto links. You can replace this line with
and it will work as you want... not exactly ideal, but that's all I've got right now.
0.2.3.6 将有此支持
0.2.3.6 will have this support