Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/schwern/pod-readme

Release history of Pod-Readme
https://github.com/schwern/pod-readme

Last synced: 30 days ago
JSON representation

Release history of Pod-Readme

Awesome Lists containing this project

README

        

NAME
Pod::Readme - Convert POD to README file

REQUIREMENTS
This module should run on Perl 5.005 or newer. The following non-core
modules (depending on your Perl version) are required:

Pod::PlainText
Test::More

INSTALLATION
Installation can be done using the traditional Makefile.PL or the newer
Build.PL methods.

Using Makefile.PL:

perl Makefile.PL
make test
make install

(On Windows platforms you should use `nmake' instead.)

Using Build.PL (if you have Module::Build installed):

perl Build.PL
perl Build test
perl Build install

SYNOPSIS
use Pod::Readme;
my $parser = Pod::Readme->new();

# Read POD from STDIN and write to STDOUT
$parser->parse_from_filehandle;

# Read POD from Module.pm and write to README
$parser->parse_from_file('Module.pm', 'README');

DESCRIPTION
This module is a subclass of Pod::PlainText which provides additional
POD markup for generating README files.

Why should one bother with this? One can simply use

pod2text Module.pm > README

A problem with doing that is that the default pod2text converter will
add text to links, so that "L" is translated to "the Module
manpage".

Another problem is that the README includes the entirety of the module
documentation! Most people browsing the README file do not need all of
this information.

Likewise, including installation and requirement information in the
module documentation is not necessary either, since the module is
already installed.

This module allows authors to mark portions of the POD to be included
only in, or to be excluded from the README file. It also allows you to
include portions of another file (such as a separate ChangeLog).

See the module documentation for more details.

REVSION HISTORY
Changes since the last release:

0.09 Sat Nov 25 2006
- uses Regexp::Common for URI parsing for L<> tag
- added separate check for https, ftps, and svn URIs
(rt.cpan.org bugs 23585 and 23613)

A detailed history is available in the Changes file.

SEE ALSO
See perlpod, perlpodspec and podlators.

AUTHOR
Robert Rothenberg

Suggestions and Bug Reporting

Feedback is always welcome. Please use the CPAN Request Tracker at
http://rt.cpan.org to submit bug reports.

LICENSE
Copyright (c) 2005,2006 Robert Rothenberg. All rights reserved. This
program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

Some portions are based on Pod::PlainText 2.02.