Scroll to navigation

Pod::HtmlPsPdf::Chapter(3) User Contributed Perl Documentation Pod::HtmlPsPdf::Chapter(3)

  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:

'=item' outside of any '=over'

=over without closing =back

2010-12-01 perl v5.38.2