Format pseudopod as html
use Pod::PseudoPod::HTML; my $parser = Pod::PseudoPod::HTML->new(); ... $parser->parse_file('path/to/file.pod');
This class is a formatter that takes PseudoPod and renders it as wrapped html.
This is a subclass of Pod::PseudoPod and inherits all its methods.
$parser->add_body_tags(1); $parser->parse_file($file);
Adds beginning and ending \*(L"<html>\*(R" and \*(L"<body>\*(R" tags to the formatted document.
$parser->add_css_tags(1); $parser->parse_file($file);
Imports a css stylesheet to the html document and adds additional css tags to url, footnote, and sidebar elements for a nicer display. If you don't plan on writing a style.css file (or using the one provided in \*(L"examples/\*(R"), you probably don't want this option on.
Pod::PseudoPod, Pod::Simple
Copyright (c) 2003-2004 Allison Randal. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the \s-1LICENSE\s0 file included with this module.
This library is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.
Allison Randal <[email protected]>