![]() |
![]()
| ![]() |
![]()
NAMEText::Table::HTML - Generate HTML table VERSIONThis document describes version 0.012 of Text::Table::HTML (from Perl distribution Text-Table-HTML), released on 2025-05-15. SYNOPSISuse Text::Table::HTML; my $rows = [ # header row ['Name', 'Rank', 'Serial'], # rows ['alice', 'pvt', '123<456>'], ['bob', 'cpl', '98765321'], ['carol', 'brig gen', '8745'], ]; print Text::Table::HTML::table(rows => $rows, header_row => 1); DESCRIPTIONThis module provides a single function, "table", which formats a two-dimensional array of data as HTML table. Its interface was first modelled after Text::Table::Tiny 0.03. The example shown in the SYNOPSIS generates the following table: <table> <thead> <tr><th>Name</th><th>Rank</th><th>Serial</th></tr> </thead> <tbody> <tr><td>alice</td><td>pvt</td><td>123<456></td></tr> <tr><td>bob</td><td>cpl</td><td>98765321</td></tr> <tr><td>carol</td><td>brig gen</td><td>8745</td></tr> </tbody> </table> COMPATIBILITY NOTES WITH TEXT::TABLE::TINYIn "Text::Table::HTML", "header_row" is an integer instead of boolean. It supports multiple header rows. Cells in "rows" can be hashrefs instead of scalars. FUNCTIONStable(%params) => strOPTIONSThe "table" function understands these arguments, which are passed as a hash.
For example, html_colgroup => [ undef, {}, q{span="2"}, { class => 'batman' } ] results in <colgroup> <col/> <col/> <col span="2" /> <col class="batman" /> </colgroup>
HOMEPAGEPlease visit the project's homepage at <https://metacpan.org/release/Text-Table-HTML>. SOURCESource repository is at <https://github.com/perlancar/perl-Text-Table-HTML>. SEE ALSOText::Table::HTML::DataTables Text::Table::Any Bencher::Scenario::TextTableModules AUTHORperlancar <perlancar@cpan.org> CONTRIBUTORDiab Jerius <djerius@cfa.harvard.edu> CONTRIBUTINGTo contribute, you can send patches by email/via RT, or send pull requests on GitHub. Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then test via: % prove -l If you want to build the distribution (e.g. to try to install it locally on your system), you can install Dist::Zilla, Dist::Zilla::PluginBundle::Author::PERLANCAR, Pod::Weaver::PluginBundle::Author::PERLANCAR, and sometimes one or two other Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond that are considered a bug and can be reported to me. COPYRIGHT AND LICENSEThis software is copyright (c) 2025 by perlancar <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. BUGSPlease report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Table-HTML> 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.
|