NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
What to do next (Score:1)
Well, that's a heck of a tricky failure.
As the culprit (as it were), I would suggest the following:
And so on.
Use the pod2html preview [cpan.org] to see how it l
Re: (Score:2)
perldoc.These are the different values:
=over 4
=item * 0
Game is over
=item * 1
full card (the default)
Renders to:
These are the different values:
o Game is over
o 1
Re: (Score:1)
perlpodspec is pretty ambiguous about it. I think it implies that it should work, but it doesn't really say it. It's probably a bug.
Generally, I think it's best if one uses the "=item X" paragraph *only* for defining "the bullet" part of the list and using a separate paragraph afterwards for the content. E.g.
--dagolden
Re: (Score:1)
Looks like someone is testing the string following the bullet with something like
if ( $headline )as opposed toif ( defined $headline and length $headline ). Check what happens if you say=item * Z<>0.(In 5.12, the need for the
definedwill go away becauselength undefwill silently return undef rather than warning and returning 0.)But I agree with David that you should not put a bullet and headline on the
=itemline.WRT Strawberry (Score:1)
As an aside though, I am going to be removing all man/html doc pre-generation once I work out how to abuse the Makefile properly.
So this problem on Strawberry will be moved from install time to run-time (inside of Pod::POM::Web for example.