• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Text/Table/H23-Sep-2018-10324

t/H23-Sep-2018-10969

ChangesH A D23-Sep-201857 42

LICENSEH A D23-Sep-201817.9 KiB380292

MANIFESTH A D23-Sep-2018266 1615

META.jsonH A D23-Sep-201819.9 KiB577575

META.ymlH A D23-Sep-201813.2 KiB432431

Makefile.PLH A D23-Sep-20181.2 KiB5947

READMEH A D23-Sep-20181.5 KiB5540

dist.iniH A D23-Sep-2018199 1812

weaver.iniH A D23-Sep-201821 21

README

1NAME
2    Text::Table::XLSX - Generate XLSX worksheet
3
4VERSION
5    This document describes version 0.001 of Text::Table::XLSX (from Perl
6    distribution Text-Table-XLSX), released on 2018-09-23.
7
8SYNOPSIS
9     use Text::Table::XLSX;
10
11     my $rows = [
12         # header row
13         ['Name', 'Rank', 'Serial'],
14         # rows
15         ['alice', 'pvt', '123456'],
16         ['bob',   'cpl', '98765321'],
17         ['carol', 'brig gen', '8745'],
18     ];
19     print Text::Table::XLSX::table(rows => $rows, header_row => 1);
20
21DESCRIPTION
22    This module provides a single function, "table", which takes a
23    two-dimensional array of data and generate an XLSX data stream from it.
24    It's basically a very thin wrapper for Spreadsheet::GenerateXLSX.
25
26HOMEPAGE
27    Please visit the project's homepage at
28    <https://metacpan.org/release/Text-Table-XLSX>.
29
30SOURCE
31    Source repository is at
32    <https://github.com/perlancar/perl-Text-Table-XLSX>.
33
34BUGS
35    Please report any bugs or feature requests on the bugtracker website
36    <https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Table-XLSX>
37
38    When submitting a bug or request, please include a test-file or a patch
39    to an existing test-file that illustrates the bug or desired feature.
40
41SEE ALSO
42    Spreadsheet::GenerateXLSX
43
44    Text::Table::Any
45
46AUTHOR
47    perlancar <perlancar@cpan.org>
48
49COPYRIGHT AND LICENSE
50    This software is copyright (c) 2018 by perlancar@cpan.org.
51
52    This is free software; you can redistribute it and/or modify it under
53    the same terms as the Perl 5 programming language system itself.
54
55