Spreadsheet-HTML ================ Render HTML5 tables with ease. Synopsis -------- ```perl use Spreadsheet::HTML; my $data = [ [qw(header1 header2 header3)], [qw(a1 a2 a3)], [qw(b1 b2 b3)], [qw(c1 c2 c3)], [qw(d1 d2 d3)], ]; my $table = Spreadsheet::HTML->new( data => $data ); print $table->portrait; print $table->landscape; # non OO print Spreadsheet::HTML::portrait( $data ); print Spreadsheet::HTML::landscape( $data ); # load from files my $table = Spreadsheet::HTML->new( file => 'data.xls', cache => 1 ); ``` Interface --------- * portrait (aka north)
head1head2head3
onetwothree
foobarbaz
123
* landscape (aka west)
head1onefoo1
head2twobar2
head3threebaz3
* east
1fooonehead1
2bartwohead2
3bazthreehead3
* south
123
foobarbaz
onetwothree
head1head2head3
Installation ------------ To install this module, you should use CPAN. A good starting place is [How to install CPAN modules](http://www.cpan.org/modules/INSTALL.html). If you truly want to install from this github repo, then be sure and create the manifest before you test and install: ``` perl Makefile.PL make make manifest make test make install ``` Support and Documentation ------------------------- After installing, you can find documentation for this module with the perldoc command. ``` perldoc Spreadsheet::HTML ``` You can also find documentation at [metaCPAN](https://metacpan.org/pod/Spreadsheet::HTML). License and Copyright --------------------- See [source POD](/lib/Spreadsheet/HTML.pm).