Hi Kirk,

* Kirk Bocek <[EMAIL PROTECTED]> [2007-06-06 19:10]:
> I'd like to add some indented bulleted points to an =item element in my POD
> documentation. What I'm doing right now is something like:
> 
> =over 4
> 
> =item Regular Item
> 
> =item Item With Bullets
> 
> =back
> 
> =over 8
> 
> =item * Bullets I Want Under Item
> 
> =back
> 
> =over 4
> 
> =item Regular Item At Original Indentation
> 
> =back
> 
> However CPAN seems to convert every '=item' after the first bulleted item into
> a bullet.
> 
> Can anyone enlighten this lost soul?

Uh, why don’t you nest the list?

    =over 4
    
    =item Regular Item
    
    =item Item With Bullets
    
    =over 4
    
    =item * Bullets I Want Under Item
    
    =back
    
    =item Regular Item At Original Indentation
    
    =back

Regards,
-- 
Aristotle Pagaltzis // <http://plasmasturm.org/>

Reply via email to