1Pod::PseudoPod::HTML(3)User Contributed Perl DocumentatioPnod::PseudoPod::HTML(3)
2
3
4

NAME

6       Pod::PseudoPod::HTML -- format PseudoPod as HTML
7

SYNOPSIS

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

DESCRIPTION

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

METHODS

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

SEE ALSO

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

AUTHOR

55       Allison Randal <allison@perl.org>
56
57
58
59perl v5.32.0                      2020-07-28           Pod::PseudoPod::HTML(3)
Impressum