NAME

Pod::XML - Module to convert POD to XML

SYNOPSIS

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

DESCRIPTION

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

XML FORMAT

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>
  <section>
  <title>Subsequent =head1's create a section</title>
    <para>
    Ordinary paragraphs of text create a para tag.
    </para>
    <verbatim>
    Indented verbatim sections go in verbatim tags.
    </verbatim>
    <subsection>
    <title>=head2's go in subsections</title>
      <para>
      Up to =head4 is supported (despite not really being 
      supported by pod), producing subsubsection and 
      subsubsubsection 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>
    </subsection>
  </section>
</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 sections based on the head level in the original POD. Let me know if this doesn't work for you.

AUTHOR

Matt Sergeant, matt@sergeant.org

SEE ALSO

Pod::Parser

BUGS

There is no xml2pod.

LICENSE

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