I have this POD:
=head1 My code
=head2 check
Checks something.
Parameters:
=over 8
=item what to check.
=back
=cut
podchecker
doesn't complain. perldoc
shows this:
My code
check
Checks something.
Parameters:
what to check.
I expected the "what to check" line to be indented further.
How do I need to change my POD to show parameters indented?
Is there a better way to do this than with =item
s?
Both
perldoc
andpod2html
ignore the indentlevel. Use bullets as a workaround. See an example below.Running
perldoc /path/to/script.pl
results in this:REFERENCES:
(From
perldoc perlpod
, boldface mine)