Skip Menu |

This queue is for tickets about the Pod-HtmlEasy CPAN distribution.

Report information
The Basics
Id: 36642
Status: resolved
Priority: 0/
Queue: Pod-HtmlEasy

People
Owner: GLEACH [...] cpan.org
Requestors: blom [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.09
Fixed in: 1.0102



Subject: Hyperlinks not parsed correctly
http://perldoc.perl.org/perlpod.html states that hyperlinks can be in the format of: L<text|name> Unfortunately, when used, podhtmleasy.pl doesn't create <a href="name">text</a>, but rather <a href="name">name</a>. -- B10m
Are you sure that you're using 1.01.02? BTW, script/podhtmleasy.pl has an error: it should have an 'output' parameter: $podhtml->pod2html( $pod_file , 'output', $html_file , @ARGV ) That said, here's what's generated by 'Here is is: L<text|name>': <p>Here is is: <i><a href='http://search.cpan.org/perldoc?name'>text</a></i></p> which seems to have 'name' and 'text' in the correct places. Perhaps a test case that shows the problem?
My bad. I didn't pay too much attention the version. I was using version 0.09. In the latest version, this indeed has been fixed. Sorry for the trouble. -- B10m