This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Pod-Perldoc to CPAN version 3.24
[perl5.git] / cpan / Pod-Perldoc / lib / Pod / Perldoc / ToXml.pm
CommitLineData
1a67fee7
HS
1package Pod::Perldoc::ToXml;
2use strict;
3use warnings;
4use vars qw($VERSION);
5
0909e3f8 6use parent qw( Pod::Simple::XMLOutStream );
1a67fee7 7
0909e3f8 8use vars qw($VERSION);
2cbf1141 9$VERSION = '3.24';
1a67fee7
HS
10
11sub is_pageable { 0 }
12sub write_with_binmode { 0 }
13sub output_extension { 'xml' }
14
151;
16__END__
17
18=head1 NAME
19
20Pod::Perldoc::ToXml - let Perldoc render Pod as XML
21
22=head1 SYNOPSIS
23
24 perldoc -o xml -d out.xml Some::Modulename
25
26=head1 DESCRIPTION
27
28This is a "plug-in" class that allows Perldoc to use
29Pod::Simple::XMLOutStream as a formatter class.
30
31This is actually a Pod::Simple::XMLOutStream subclass, and inherits
32all its options.
33
34You have to have installed Pod::Simple::XMLOutStream (from the Pod::Simple
35dist), or this class won't work.
36
37
38=head1 SEE ALSO
39
40L<Pod::Simple::XMLOutStream>, L<Pod::Simple>, L<Pod::Perldoc>
41
42=head1 COPYRIGHT AND DISCLAIMERS
43
44Copyright (c) 2002 Sean M. Burke. All rights reserved.
45
46This library is free software; you can redistribute it and/or modify it
47under the same terms as Perl itself.
48
49This program is distributed in the hope that it will be useful, but
50without any warranty; without even the implied warranty of
51merchantability or fitness for a particular purpose.
52
53=head1 AUTHOR
54
0909e3f8 55Current maintainer: Mark Allen C<< <mallen@cpan.org> >>
91a46224
AF
56
57Past contributions from:
0909e3f8
RS
58brian d foy C<< <bdfoy@cpan.org> >>
59Adriano R. Ferreira C<< <ferreira@cpan.org> >>,
60Sean M. Burke C<< <sburke@cpan.org> >>
1a67fee7
HS
61
62=cut
a6b91202 63