Perl 使用pod2html生成带有自定义文本的http链接的正确语法是什么?

Perl 使用pod2html生成带有自定义文本的http链接的正确语法是什么?,perl,perl-pod,Perl,Perl Pod,perlpod的文档告诉我可以使用 L或L,它甚至以L为例 第一种情况对我来说很好:pod2htmlturns L<http://example.com/> L 进入 但它失败了 L<example|http://example.com/> L 刚刚变成了 <em>example</em> 示例 除了警告之外: /usr/bin/pod2html: : cannot resolve L<example|http://examp

perlpod的
文档告诉我可以使用
L
L
,它甚至以
L
为例

第一种情况对我来说很好:
pod2html
turns

L<http://example.com/>
L
进入


但它失败了

L<example|http://example.com/>
L
刚刚变成了

<em>example</em>
示例
除了警告之外:

/usr/bin/pod2html: : cannot resolve L<example|http://example.com/> in paragraph 2.
/usr/bin/pod2html::无法解析第2段中的L。
我本以为会是这样的

<a href="http://example.com/">example</a>

待生产。我怎样才能做到这一点

更新因此,正如Alan Haggai Alavi所指出的,这似乎是
Pod::Html中的一个bug。有解决办法吗?

像这样使用它

L<< example|http://example.com/ >>
L>
这确实是一个错误。它已经在布利德珀尔修好了

现在
L
转换为

因为是一个纯Perl模块,它将为您提供1.12版。perlv5.14.2附带的模块是1.11版,显示了此错误


否则,您可以使用预期的效果。

在发布原始问题之前,我尝试过这样做。没用。
L<< example|http://example.com/ >>