1package Pod::Perldoc::ToXml;
2use strict;
3use warnings;
4use vars qw($VERSION);
5
6use parent qw( Pod::Simple::XMLOutStream );
7
8use vars qw($VERSION);
9$VERSION = '3.28';
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
55Current maintainer: Mark Allen C<< <mallen@cpan.org> >>
56
57Past contributions from:
58brian d foy C<< <bdfoy@cpan.org> >>
59Adriano R. Ferreira C<< <ferreira@cpan.org> >>,
60Sean M. Burke C<< <sburke@cpan.org> >>
61
62=cut
63
64