The perlpod documentation tells me that I can link to URLs using L<scheme:...> or L<text|scheme:...> , it even lists L<The Perl Home Page|http://www.perl.org/> as an example.
The first case works fine for me: pod2html turn
L<http:
in
<a href="http://example.com/">http:
But he fails on
L<example|http:
which just turns into
<em>example</em>
along with a warning:
/usr/bin/pod2html: : cannot resolve L<example|http://example.com/> in paragraph 2.
I would expect something like
<a href="http://example.com/">example</a>
. How can i achieve this?
UPDATE . So it seems that this is a mistake in Pod::Html , as Alan Haggai Alawi points out. Is there a workaround?
hillu source share