There is a module in Perl Called as "pod2html" which gives details on how to convert pod to html.
Following is the command line for converting pod 2 html :
pod2html --help --htmlroot=
--outfile= --podpath=:...:
--podroot= --libpods=:...:
--recurse --norecurse --verbos
--index --noindex --title=
--htmlroot: Root path when creating HTML File from pod.
--infile: Specify the pod file name to convert to html
--outfile: HTML Filename to be created, if not given then output will go to STDOUT
--index : Creates index at TOP of HTML File (Default)
--noindex: Oppsite of "--index", don't create index at top
--recurse: Recurse into subdirectories specified in podpath(default)
--norecurse: Do not recurse
--title: Title of resulting HTML File
--verbose: Display progress messages
--podroot: Base directory for finding library podsExample: pod2html --infile=Test.pm --outfile=Test.html --header --index --backlink="Go Back to Top"
For further study: POD::HTML, Plain OLD Documentation
No comments:
Post a Comment