SYNOPSIS use Text::Table::HTML::DataTables; my $rows = [ # header row ['Name', 'Rank', 'Serial'], # rows ['alice', 'pvt', '123<456>'], ['bob', 'cpl', '98765321'], ['carol', 'brig gen', '8745'], ]; print Text::Table::HTML::DataTables::table(rows => $rows, header_row => 1); DESCRIPTION This module is just like Text::Table::HTML, except the HTML code will also load jQuery (http://jquery.com) and the DataTables plugin (http://datatables.net) from the local filesystem (distribution shared directory), so you can filter and sort the table in the browser. The example shown in the SYNOPSIS generates the following table:
NameRankSerial
alicepvt12345
bobcpl98765321
carolbrig gen8745
FUNCTIONS table(%params) => str OPTIONS The table function understands these arguments, which are passed as a hash. * rows (aoaos) Takes an array reference which should contain one or more rows of data, where each row is an array reference. SEE ALSO Text::Table::HTML See also Bencher::Scenario::TextTableModules.