| The POD Format Converter
                          This converter converts from POD to HTML, using Tom Christiansen's
                          Pod::Html module.
                          
                         
                          POD is a powerful, but simple, editable-text format for marking up
                          manual-page-style documentation. See the "perlpod" manual page in your Perl
                          documentation for more information on the POD format.
                          
                         
                          Things to watch out for in WebMake's support for POD:
                          
                         
                          
                            
                              Anything before the <BODY> tag, or after the </BODY>
                               tag, in the generated output is stripped, so that the POD output can be
                               embedded in HTML pages without requiring a page of its own.
                              
                            
                            
                              WebMake allows options to pod2html to be specified using
                               the podargs attribute of the <content> tag; see below.
                              
                            
                            
                              If you are reading POD documentation embedded inside other files,
                               you should probably use the "asis" attribute on the content items in
                               question, otherwise all sorts of wierd things could happen as WebMake tries
                               to interpret Perl variable references and so on! See the <content> documentation for details on "asis".
                              
                             Specifying Options to the POD Translator
                          If you want to specify pod2html options to the converter, just
                          put them in a string as a podargs attribute of the <content> tag,
                          like so:
                          
                         
                          
                            <content name="some_pod" podargs="--noindex">
                             ...
                             </content>
                            
                           
                          
                         |