Track /etc/gitconfig
[msysgit/mtrensch.git] / lib / perl5 / 5.8.8 / Pod / Perldoc / ToXml.pm
blobdd0d15cc10b227a0434d7795977d3760a2059a64
2 require 5;
3 package Pod::Perldoc::ToXml;
4 use strict;
5 use warnings;
6 use vars qw($VERSION);
8 use base qw( Pod::Simple::XMLOutStream );
10 $VERSION # so that ->VERSION is happy
11 # stop CPAN from seeing this
13 $Pod::Simple::XMLOutStream::VERSION;
16 sub is_pageable { 0 }
17 sub write_with_binmode { 0 }
18 sub output_extension { 'xml' }
21 __END__
23 =head1 NAME
25 Pod::Perldoc::ToXml - let Perldoc render Pod as XML
27 =head1 SYNOPSIS
29 perldoc -o xml -d out.xml Some::Modulename
31 =head1 DESCRIPTION
33 This is a "plug-in" class that allows Perldoc to use
34 Pod::Simple::XMLOutStream as a formatter class.
36 This is actually a Pod::Simple::XMLOutStream subclass, and inherits
37 all its options.
39 You have to have installed Pod::Simple::XMLOutStream (from the Pod::Simple
40 dist), or this class won't work.
43 =head1 SEE ALSO
45 L<Pod::Simple::XMLOutStream>, L<Pod::Simple>, L<Pod::Perldoc>
47 =head1 COPYRIGHT AND DISCLAIMERS
49 Copyright (c) 2002 Sean M. Burke. All rights reserved.
51 This library is free software; you can redistribute it and/or modify it
52 under the same terms as Perl itself.
54 This program is distributed in the hope that it will be useful, but
55 without any warranty; without even the implied warranty of
56 merchantability or fitness for a particular purpose.
58 =head1 AUTHOR
60 Sean M. Burke C<sburke@cpan.org>
62 =cut