1N/A
1N/Arequire 5;
1N/Apackage Pod::Perldoc::ToXml;
1N/Ause strict;
1N/Ause warnings;
1N/Ause vars qw($VERSION);
1N/A
1N/Ause base qw( Pod::Simple::XMLOutStream );
1N/A
1N/A$VERSION # so that ->VERSION is happy
1N/A# stop CPAN from seeing this
1N/A =
1N/A$Pod::Simple::XMLOutStream::VERSION;
1N/A
1N/A
1N/Asub is_pageable { 0 }
1N/Asub write_with_binmode { 0 }
1N/Asub output_extension { 'xml' }
1N/A
1N/A1;
1N/A__END__
1N/A
1N/A=head1 NAME
1N/A
1N/APod::Perldoc::ToXml - let Perldoc render Pod as XML
1N/A
1N/A=head1 SYNOPSIS
1N/A
1N/A perldoc -o xml -d out.xml Some::Modulename
1N/A
1N/A=head1 DESCRIPTION
1N/A
1N/AThis is a "plug-in" class that allows Perldoc to use
1N/APod::Simple::XMLOutStream as a formatter class.
1N/A
1N/AThis is actually a Pod::Simple::XMLOutStream subclass, and inherits
1N/Aall its options.
1N/A
1N/AYou have to have installed Pod::Simple::XMLOutStream (from the Pod::Simple
1N/Adist), or this class won't work.
1N/A
1N/A
1N/A=head1 SEE ALSO
1N/A
1N/AL<Pod::Simple::XMLOutStream>, L<Pod::Simple>, L<Pod::Perldoc>
1N/A
1N/A=head1 COPYRIGHT AND DISCLAIMERS
1N/A
1N/ACopyright (c) 2002 Sean M. Burke. All rights reserved.
1N/A
1N/AThis library is free software; you can redistribute it and/or modify it
1N/Aunder the same terms as Perl itself.
1N/A
1N/AThis program is distributed in the hope that it will be useful, but
1N/Awithout any warranty; without even the implied warranty of
1N/Amerchantability or fitness for a particular purpose.
1N/A
1N/A=head1 AUTHOR
1N/A
1N/ASean M. Burke C<sburke@cpan.org>
1N/A
1N/A=cut
1N/A