NAME
Text::Table::TickitWidget - View table data on the terminal using Tickit::Widget::Table
VERSION
This document describes version 0.001 of Text::Table::TickitWidget (from Perl distribution Text-Table-TickitWidget), released on 2021-04-25.
SYNOPSIS
use Text::Table::TickitWidget;
my $rows = [
# header row
['Name', 'Rank', 'Serial'],
# rows
['alice', 'pvt', '123<456>'],
['bob', 'cpl', '98765321'],
['carol', 'brig gen', '8745'],
];
Text::Table::TickitWidget::table(rows => $rows, header_row => 1);
DESCRIPTION
This module uses the Text::Table::Tiny (0.03) interface to let you view table data on the terminal using Tickit::Widget::Table.
FUNCTIONS
table
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/Text-Table-TickitWidget.
SOURCE
Source repository is at https://github.com/perlancar/perl-Text-Table-TickitWidget.
BUGS
Please report any bugs or feature requests on the bugtracker website https://github.com/perlancar/perl-Text-Table-TickitWidget/issues
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
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2021 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.