You are using a browser which doesn't fully support Cascading Style Sheets. This site will look much better in a browser that supports web standards, but its content is accessible to any browser or Internet device.

POD

To import POD files, use one of these methods:

Process POD sources

     > perlpoint ... IMPORT:example.pod

Embed

     // import a snippet in POD
     \EMBED{import=pod}
  
     =over
  
     =item * point 1
  
     =item * point 2
  
     =back
  
     \END_EMBED

Include

     // include a POD file
     \INCLUDE{import=1 file="example.pod"}

Misc

.. and of course you can define your own ifilters ;-)

The standard import filter uses PerlPoint::Import::POD, which comes with Pod::PerlPoint. Please see the documentation of both modules for supported features. Especially, you can embed PerlPoint into your imported POD:

     // import a snippet in POD,
     // which in turn contains some PerlPoint
  
     \EMBED{import=pod}
  
     =head2 Embedded PerlPoint
  
     =for perlpoint It \I<works>!
  
     \END_EMBED