1Padre::Wx::Frame::POD(3U)ser Contributed Perl DocumentatiPoandre::Wx::Frame::POD(3)
2
3
4
6 Padre::Wx::Frame::POD - Simple Single-Document Pod2HTML Viewer
7
9 # Create the Pod viewing window
10 my $frame = Padre::Wx::Frame::POD->new;
11
12 # Load a Pod file or document
13 $frame->load_file( 'file.pod' );
14 $frame->load_pod( "=head1 THIS IS POD!" );
15
17 "Padre::Wx::Frame::POD" provides a simple standalone window containing
18 a Pod2HTML rendering widget, for displaying a single POD document as
19 HTML.
20
22 new
23 The "new" constructor creates a new, empty, frame for displaying Pod.
24
25 load_file
26 $frame->load_file( 'filename.pod' );
27
28 The "load_file" method loads a named file into the POD viewer.
29
30 load_pod
31 $frame->load_pod( $pod_string );
32
33 The "load_pod" method loads a document into the POD viewer by providing
34 the entire document as a string.
35
37 See the main Padre documentation.
38
40 Adam Kennedy <adamk@cpan.org>
41
43 Copyright 2008-2011 The Padre development team as listed in Padre.pm.
44
45 This program is free software; you can redistribute it and/or modify it
46 under the same terms as Perl 5 itself.
47
48 The full text of the license can be found in the LICENSE file included
49 with this module.
50
51
52
53perl v5.30.0 2019-07-26 Padre::Wx::Frame::POD(3)