[EMAIL PROTECTED] (Randal L. Schwartz) writes: > There's Template::Plugin::Pod (USE Pod ...) and in Template::Manual::Views, > note the following: > > And here's the same approach use to convert Pod documenta- > tion to any other format via template. > > [% # load Pod plugin and parse source file into Pod Object Model > USE Pod; > pom = Pod.parse_file(my_pod_file); > > # define view to map all Pod elements to "pod/html/xxx" template$ > VIEW pod2html > prefix='pod/html'; > END; > > # now print document via view (i.e. as HTML) > pod2html.print(pom) > %] > > Here we simply define a template prefix for the view which > causes the view to look for `pod/html/head1', > `pod/html/head2', `pod/html/over' as templates to present > the different sections of the parsed Pod document.
Ah, yes. Now I found the templates installed in templates/pod/html. I ended up building from Pod::Tree::HTML and Pod::Find. -- / Jonas - http://jonas.liljegren.org/myself/en/index.html _______________________________________________ templates mailing list [EMAIL PROTECTED] http://www.template-toolkit.org/mailman/listinfo/templates
