I just reported this as a bug on Pod::Simple::HTML.

The problem is in line 168-9

        my $out = $to if defined $to and length $to;
        $out .= "#" . $section if defined $section and length $section;

One of those "Deprecated use of my() in conditional" cases they've been talking about on perl5-porters.

        my $out;
        $out = $to if defined $to and length $to;
        $out .= "#" . $section if defined $section and length $section;

fixes it.

Looks like we'll be modifying Pod-Simple after all.

Mike


On 4 Mar 2004, at 20:33, Robert Spier wrote:


In a similar(?) vein,

www.parrotcode.org/faq/ currently has a number of broken links,
including "apocalypses", "PDD6", and "Java bytecode to Parrot bytecode".

This is because the links are funny.


The best way to get proper links is to do something like:

L<This is CNN|http://www.cnn.com>

That's not great.. but it tends to render better.

Our official Pod renderer is Pod::Simple::HTML, so you can test it
out.

I'm throwing this back to p6i, so somebody can fix it, and maybe take
another pass through the FAQ, addming more F.. A... Q...s ;)

-R




Reply via email to