Pod::XML - Module to convert POD to XML


Pod-XML documentation  | view source Contained in the Pod-XML distribution.

Index


NAME

Top

Pod::XML - Module to convert POD to XML

SYNOPSIS

Top

  use Pod::XML;
  my $parser = Pod::XML->new();
  $parser->parse_from_file("foo.pod");

DESCRIPTION

Top

This module uses Pod::Parser to parse POD and generates XML from the resulting parse stream. It uses its own format, described below.

OPTIONS

Top

Encoding

Specify the output encoding of the XML file. Requires Encode Perl module.

XML FORMAT

Top

The XML format is not a standardised format - if you wish to generate some standard XML format such as docbook, please use a tool such as XSLT to convert between this and that format.

The format uses the namespace "http://axkit.org/ns/2000/pod2xml". Do not try and request this URI - it is virtual. You will get a 404.

The best way to describe the format is to show you:

  <pod xmlns="http://axkit.org/ns/2000/pod2xml">
    <head>
      <title>The first =head1 goes in here</title>
    </head>
    <sect1>
    <title>Subsequent =head1's create a sect1</title>
      <para>
      Ordinary paragraphs of text create a para tag.
      </para>
      <verbatim><![CDATA[
      Indented verbatim sections go in verbatim tags using a CDATA
      section rather than XML escaping.
      ]]></verbatim>
      <sect2>
      <title>=head2's go in sect2</title>
        <para>
        Up to =head4 is supported (despite not really being 
        supported by pod), producing sect3 and 
        sect4 respectively for =head3 and =head4.
        </para>
        <para>
        Bold text goes in a <strong>strong</strong> tag.
        </para>
        <para>
        Italic text goes in a <emphasis>emphasis</emphasis> tag.
        </para>
        <para>
        Code goes in a <code>code</code> tag.
        </para>
        <para>
        Lists (=over, =item, =back) go in list/item/itemtext 
        tags. The itemtext element is only present if the 
        =item text is <strong>not</strong> the "*" character.
        </para>
      </sect2>
    </sect1>
  </pod>

If the first =head1 is "NAME" (like standard perl modules are supposed to be) it takes the next paragraph as the document title. Other standard head elements of POD are left unchanged (particularly, the SYNOPSIS and DESCRIPTION elements of standard POD).

Pod::XML tries to be careful about nesting sects based on the head level in the original POD. Let me know if this doesn't work for you.

AUTHOR

Top

Original version by Matt Sergeant, matt@sergeant.org

Version 0.95+ by Matt Wilson <matt@mattsscripts.co.uk>

MAINTAINER

Top

Matt Wilson <matt@mattsscripts.co.uk>

SEE ALSO

Top

Pod::Parser

LICENSE

Top

This is free software, you may use it and distribute it under the same terms as Perl itself.


Pod-XML documentation  | view source Contained in the Pod-XML distribution.