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

Thank you for the reply! I did checkout POD::XML but it says it can't convert it to standard xml format. Have you had any experience using this module before? If so, please share it here.

Replies are listed 'Best First'.
Re^3: Convert POD to XML or JSON files
by tobyink (Canon) on Nov 12, 2013 at 09:17 UTC

    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
      Thank you very much!
      Thank you very much!