1Padre::Pod2HTML(3) User Contributed Perl Documentation Padre::Pod2HTML(3)
2
3
4
6 Padre::Pod2HTML - A customised Pod to HTML for Padre
7
9 # The quicker way
10 $html = Padre::Pod2HTML->pod2html( $pod_string );
11
12 # The slower way
13 $parser = Padre::Pod2HTML->new;
14 $parser->parse_string_document( $pod_string );
15 $html = $parser->html;
16
18 "Padre::Pod2HTML" provides a central point for pod2html functionality
19 inside of Padre.
20
21 Initially it just provides an internal convenience that converts
22 Pod::Simple::XHTML from printing to "STDOUT" to capturing the HTML.
23
24 Currently the constructor does not take any options.
25
27 Adam Kennedy "adamk@cpan.org" Ahmad M. Zawawi "ahmad.zawawi@gmail.com"
28
30 Padre
31
33 Copyright 2008-2010 The Padre development team as listed in Padre.pm.
34
35 This program is free software; you can redistribute it and/or modify it
36 under the same terms as Perl itself.
37
38 The full text of the license can be found in the LICENSE file included
39 with this module.
40
41
42
43perl v5.12.1 2010-06-11 Padre::Pod2HTML(3)