in reply to Re^2: Convert POD to XML or JSON files
in thread Convert POD to XML or JSON files

What it means is that it doesn't output a standardised document format such as XHTML, Docbook, OOXML, etc. The output is still valid XML 1.0, and can be handled with generic XML tools.

Unless you need a particular flavour of XML, Pod::XML will do the job. Even if you do need a particular flavour of XML, I'd consider using Pod::XML and then post-processing with XSLT.

use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name

Replies are listed 'Best First'.
Re^4: Convert POD to XML or JSON files
by munk28 (Initiate) on Nov 12, 2013 at 19:06 UTC
    Thank you very much!
Re^4: Convert POD to XML or JSON files
by munk28 (Initiate) on Nov 12, 2013 at 19:07 UTC
    Thank you very much!