1Pod::PseudoPod::HTML(3pUms)er Contributed Perl DocumentatPioodn::PseudoPod::HTML(3pm)
2
3
4
6 Pod::PseudoPod::HTML -- format PseudoPod as HTML
7
9 use Pod::PseudoPod::HTML;
10
11 my $parser = Pod::PseudoPod::HTML->new();
12
13 ...
14
15 $parser->parse_file('path/to/file.pod');
16
18 This class is a formatter that takes PseudoPod and renders it as
19 wrapped html.
20
21 This is a subclass of Pod::PseudoPod and inherits all its methods.
22
24 add_body_tags
25 $parser->add_body_tags(1);
26 $parser->parse_file($file);
27
28 Adds beginning and ending "<html>" and "<body>" tags to the formatted
29 document.
30
31 add_css_tags
32 $parser->add_css_tags(1);
33 $parser->parse_file($file);
34
35 Imports a css stylesheet to the html document and adds additional css
36 tags to url, footnote, and sidebar elements for a nicer display. If you
37 don't plan on writing a style.css file (or using the one provided in
38 "examples/"), you probably don't want this option on.
39
41 Pod::PseudoPod, Pod::Simple
42
44 Copyright (c) 2003-2004 Allison Randal. All rights reserved.
45
46 This library is free software; you can redistribute it and/or modify it
47 under the same terms as Perl itself. The full text of the license can
48 be found in the LICENSE file included with this module.
49
50 This library is distributed in the hope that it will be useful, but
51 without any warranty; without even the implied warranty of
52 merchantability or fitness for a particular purpose.
53
55 Allison Randal <allison@perl.org>
56
57
58
59perl v5.38.0 2023-07-21 Pod::PseudoPod::HTML(3pm)