NAME

CmUtils::Pod::Text::Colour - Convert POD data to formatted colour ASCII text

SYNOPSIS

    use CmUtils::Pod::Text::Colour;
    my $parser = CmUtils::Pod::Text::Colour->new (sentence => 0, width => 78);
    # Read POD from STDIN and write to STDOUT.
    $parser->parse_from_filehandle;
    # Read POD from file.pod and write to file.txt.
    $parser->parse_from_file ('file.pod', 'file.txt');

DESCRIPTION

CmUtils::Pod::Text::Colour is a simple subclass of Pod::Text that highlights output text using ANSI colour escape sequences. Apart from the colour, it in all ways functions like Pod::Text. See Pod::Text for details and available options.

Term::ANSIColor is used to get colours and therefore must be installed to use this module.

SEE ALSO

Pod::Text, Pod::Text::Color, Pod::Parser

AUTHORS

Greg Sands <g.sands@auckland.ac.nz>.

Russ Allbery <rra@stanford.edu>.