The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Perl6::Pod::Lib;
=pod

=head1 NAME

Perl6::Pod::Lib - set of extensions for Perl6::Pod

=head1 SYNOPSIS


    =begin pod
    =Image src/test.jpg
    =end pod


    =begin pod
    =Include api.pod
    =end pod

    pod6xhtml -M Perl6::Pod::Lib somefile.pod  > somefile.xhtml

=head1 DESCRIPTION

The given library contains modules which expand possibilities of documents writen in Perldoc Pod (perl6's pod).

=over

=item * Perl6::Pod::Lib::Include

Insert filtered content of other Pod

=item * Perl6::Pod::Lib::Image

Insert image

=back

=cut
use Perl6::Pod::Lib::Image;
use Perl6::Pod::Lib::Include;

$Perl6::Pod::Lib::VERSION = '0.13';
our $PERL6POD = <<POD;
=begin pod
=use Perl6::Pod::Lib::Image
=use Perl6::Pod::Lib::Include
=end pod
POD

#package variable for map blocks and classes

our $POD6USE = {
'Image'=>'Perl6::Pod::Lib::Image',
'Include'=>'Perl6::Pod::Lib::Include'
};

1;
__END__


=head1 SEE ALSO

Perl6::Pod, Perl6::Pod::Lib::Include, Perl6::Pod::Lib::Image

L<http://perlcabal.org/syn/S26.html>

=head1 AUTHOR

Zahatski Aliaksandr, <zag@cpan.org>

=head1 COPYRIGHT AND LICENSE

Copyright (C) 2010-2015 by Zahatski Aliaksandr

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.10 or,
at your option, any later version of Perl 5 you may have available.

=cut