NAME
    Pod::Text::Ansi - Convert POD to ANSI-colored text

SYNOPSIS
        use Pod::Text::Ansi;
        my $parser = Pod::Text::Ansi->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
    Pod::Text::Ansi is a simple subclass of Pod::Text that highlights output
    text using ANSI color escape sequences. Apart from the color, it in all
    ways functions like Pod::Text. See Pod::Text for details and available
    options.

SEE ALSO
    Pod::Text::Color, Pod::Text, Pod::Simple

AUTHOR
    Hinrik Örn Sigurðsson, hinrik.sig@gmail.com

    Based on Pod::Text::Color by Russ Allbery rra@stanford.edu.

LICENSE AND COPYRIGHT
    Copyright 1999, 2001, 2004, 2006 by Russ Allbery rra@stanford.edu.

    Copyright (c) 2009, Hinrik Örn Sigurðsson hinrik.sig@gmail.com.

    This program is free software; you may redistribute it and/or modify it
    under the same terms as Perl itself. See perlartistic.

