Pod::HtmlPsPdf::Chapter(3) User Contributed Perl Documentation Pod::HtmlPsPdf::Chapter(3)
podify_items()
podify_items(@pars);
Podify text to represent items in pod, e.g:
1 Some text from item Item1
2 Some text from item Item2
becomes:
=over 4
=item 1
Some text from item Item1
=item 2
Some text from item Item2
=back
podify_items() accepts '"*"' and digits as bullets
podify_items() receives a ref to array of paragraphs as a parameter and modifies it. Nothing returned.
Moreover, you can use a second level of indentation. So you can have
* title
* * item
* * item
or
* title
* 1 item
* 2 item
where the second mark is which tells whether to use a ball bullet or a numbered item.
POD ERRORS
Hey! The above document had some coding errors, which are explained below:
Around line 83:
'=item' outside of any '=over'
perl v5.12.1 2001-03-23 Pod::HtmlPsPdf::Chapter(3)