* Joseph Brenner ([EMAIL PROTECTED]) [041104 08:12]: > Mostly I'm just looking for something that will crunch > a tree of perl modules with pod, and output a parallel > tree of html with the L<> links converted into relative > html links. > > Thus far I've tried: > > Pod::Html > pods2html > Pod::Tree::HTML > Pod::HtmlTree > Pod::Tree::* > DocSet > Pod::Simple::HTMLBatch > Marek::Pod::HTML
Or OODoc, which extends pod with some keywords to be able to document error messages, inheritance, and examples (it is the step from visual markup to logical markup) in your code, but can also accept plain pod... Crucial question: is the pod related and about your own code, or is it standard stuff you want to reformat? Especially when your own code grows out-of-hand (f.e. when it is object oriented) setting-up OODoc becomes useful... Many examples are included in the distribution. One huge example of its HTML output can be found in http://perl.overmeer.net/mailbox/html/ but it also produces plain old POD to be included in CPAN distributions. Description of the default syntax extensions in http://perl/oodoc/html/OODoc::Parser::Markov You can make your own extensions in various ways: input syntax, output format, keywords. -- MarkOv ------------------------------------------------------------------------ drs Mark A.C.J. Overmeer MARKOV Solutions [EMAIL PROTECTED] [EMAIL PROTECTED] http://Mark.Overmeer.net http://solutions.overmeer.net
