#!perl # PODNAME: markdown2pod # ABSTRACT: markdown2pod - convert Markdown text to Pod use Markdown::Pod::script; unless (caller) { my $app = Markdown::Pod::script->new; $app->parse_options(@ARGV); $app->doit or exit(1); } =pod =encoding utf-8 =head1 NAME markdown2pod - markdown2pod - convert Markdown text to Pod =head1 VERSION version 0.001 =head1 SYNOPSIS markdown2pod readme.mkd markdown2pod readme.mkd > readme.html markdown2pod < readme.mkd > readme.html cat readme.mkd | markdown2pod > readme.html =head1 DESCRIPTION This script converts Markdown to POD. If you want to convert Markdown in your perl source code, then check L module. =head1 AUTHOR Keedi Kim - κΉ€λ„ν˜• =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011 by Keedi Kim. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut __END__