NAME

Text::Table::TinyColor - Text::Table::Tiny + support for colored text

VERSION

This document describes version 0.001 of Text::Table::TinyColor (from Perl distribution Text-Table-TinyColor), released on 2016-10-19.

SYNOPSIS

use Term::ANSIColor;
use Text::Table::TinyColor qw/ generate_table /;

my $rows = [
    # header row
    [colored(['bright_green'],'Name'), colored(['bright_green'],'Rank'), colored(['bright_green'],'Serial')],
    # rows
    ['alice', 'pvt', '123456'],
    ['bob',   'cpl', '98765321'],
    ['carol', 'brig gen', colored(['bold'], '8745')],
];
print generate_table(rows => $rows, header_row => 1);

DESCRIPTION

This module is Text::Table::Tiny (0.04) which adds supports for colored text (text that contains ANSI color codes): the colored text will still line up.

Interface, options, and format variables are the same as in Text::Table::Tiny.

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/Text-Table-TinyColor.

SOURCE

Source repository is at https://github.com/perlancar/perl-Text-Table-TinyColor.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Table-TinyColor

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

SEE ALSO

Text::Table::Tiny

Text::Table::TinyWide for table with wide character support.

Text::Table::Any

Text::ANSITable for more formatting options and wide character support, but with larger footprint and slower rendering speed.

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.