in reply to POD Question

Your example says 'being' instead of 'begin', but that probably isn't your real problem. =begin lets you specify a block of data that will be passed directly to the interpreter to either display or ignore. In the case of pod2html, it only displays =begin sections that are labeled 'html' or 'pod2html', all other formats are ignored.

You could always try this:

=begin html <PRE> text. text. text. </PRE> =end

Replies are listed 'Best First'.
Re: Re: POD Question
by nimdokk (Vicar) on Feb 19, 2003 at 17:26 UTC
    Thanks, got it working.