perlpod
文档告诉我,我可以使用L<scheme:...>
或L<text|scheme:...>
链接到URL,甚至可以列出L<The Perl Home Page|http://www.perl.org/>
为例。
第一种情况对我来说效果很好: pod2html
转
L<http://example.com/>
进入
<a href="http://example.com/">http://example.com/</a>
但是失败了
L<example|http://example.com/>
变成了
<em>example</em>
以及警告:
/usr/bin/pod2html: : cannot resolve L<example|http://example.com/> in paragraph 2.
我本来希望像
<a href="http://example.com/">example</a>
待生产。 我该如何实现?
更新因此,正如Alan Haggai Alavi指出的那样,这似乎是Pod::Html
的错误。 有解决方法吗?