/Users/cpanrun/depot/main/contrib-patched/perl/CPAN/src/Pod-HtmlPsPdf/blib/lib/Pod/HtmlPsPdf/Chapter.pm

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.