table of contents
        
      
      
    
      other versions
    
    - Tumbleweed 0.04-510.35
 - Leap-15.6
 
| 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 Item2becomes:
=over 4 =item 1 Some text from item Item1 =item 2 Some text from item Item2 =backpodify_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 * * itemor
* title * 1 item * 2 itemwhere 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'
    
=over without closing =back
 
| 2010-12-01 | perl v5.42.0 |