You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pod-p...@perl.org
How can I embed pod directives in a pod directive so that they are displayed as plain text ? I have tried =begin pod or =begin text without success. Should I use E<61> instead of = ?
Thanks
François
Shawn H Corey
unread,
Apr 13, 2017, 9:00:06 AM4/13/17
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pod-p...@perl.org, RAPPAZ Francois
Usually embedded POD is done in a verbatim paragraph since these will
be rendered in a monospace font.
=head1 Embedding POD in a POD
=head1 This is not a heading.
This is a verbatim paragraph.
This will be displayed in a monospace font.
This is a regular paragraph.
=cut
--
Don't stop where the ink does.
Shawn H Corey
Peter Karman
unread,
Apr 13, 2017, 9:00:06 AM4/13/17
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pod-p...@perl.org
RAPPAZ Francois via pod-people wrote on 4/13/17 6:36 AM:
> How can I embed pod directives in a pod directive so that they are displayed as
> plain text ? I have tried =begin pod or =begin text without success. Should I
> use E<61> instead of = ?
>