1898184e3Ssthenpackage Pod::Perldoc::ToXml; 2898184e3Ssthenuse strict; 3898184e3Ssthenuse warnings; 4898184e3Ssthenuse vars qw($VERSION); 5898184e3Ssthen 6898184e3Ssthenuse parent qw( Pod::Simple::XMLOutStream ); 7898184e3Ssthen 8898184e3Ssthenuse vars qw($VERSION); 9*9f11ffb7Safresh1$VERSION = '3.28'; 10898184e3Ssthen 11898184e3Ssthensub is_pageable { 0 } 12898184e3Ssthensub write_with_binmode { 0 } 13898184e3Ssthensub output_extension { 'xml' } 14898184e3Ssthen 15898184e3Ssthen1; 16898184e3Ssthen__END__ 17898184e3Ssthen 18898184e3Ssthen=head1 NAME 19898184e3Ssthen 20898184e3SsthenPod::Perldoc::ToXml - let Perldoc render Pod as XML 21898184e3Ssthen 22898184e3Ssthen=head1 SYNOPSIS 23898184e3Ssthen 24898184e3Ssthen perldoc -o xml -d out.xml Some::Modulename 25898184e3Ssthen 26898184e3Ssthen=head1 DESCRIPTION 27898184e3Ssthen 28898184e3SsthenThis is a "plug-in" class that allows Perldoc to use 29898184e3SsthenPod::Simple::XMLOutStream as a formatter class. 30898184e3Ssthen 31898184e3SsthenThis is actually a Pod::Simple::XMLOutStream subclass, and inherits 32898184e3Ssthenall its options. 33898184e3Ssthen 34898184e3SsthenYou have to have installed Pod::Simple::XMLOutStream (from the Pod::Simple 35898184e3Ssthendist), or this class won't work. 36898184e3Ssthen 37898184e3Ssthen 38898184e3Ssthen=head1 SEE ALSO 39898184e3Ssthen 40898184e3SsthenL<Pod::Simple::XMLOutStream>, L<Pod::Simple>, L<Pod::Perldoc> 41898184e3Ssthen 42898184e3Ssthen=head1 COPYRIGHT AND DISCLAIMERS 43898184e3Ssthen 44898184e3SsthenCopyright (c) 2002 Sean M. Burke. All rights reserved. 45898184e3Ssthen 46898184e3SsthenThis library is free software; you can redistribute it and/or modify it 47898184e3Ssthenunder the same terms as Perl itself. 48898184e3Ssthen 49898184e3SsthenThis program is distributed in the hope that it will be useful, but 50898184e3Ssthenwithout any warranty; without even the implied warranty of 51898184e3Ssthenmerchantability or fitness for a particular purpose. 52898184e3Ssthen 53898184e3Ssthen=head1 AUTHOR 54898184e3Ssthen 55898184e3SsthenCurrent maintainer: Mark Allen C<< <mallen@cpan.org> >> 56898184e3Ssthen 57898184e3SsthenPast contributions from: 58898184e3Ssthenbrian d foy C<< <bdfoy@cpan.org> >> 59898184e3SsthenAdriano R. Ferreira C<< <ferreira@cpan.org> >>, 60898184e3SsthenSean M. Burke C<< <sburke@cpan.org> >> 61898184e3Ssthen 62898184e3Ssthen=cut 63898184e3Ssthen 64