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.11'; our $PERL6POD = <'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 =head1 AUTHOR Zahatski Aliaksandr, =head1 COPYRIGHT AND LICENSE Copyright (C) 2010-2012 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