
Data::Tabular::Output::HTML

This object is used by Data::Tabular to render an HTML table.

This object takes a Table and an output object and return an HTML table.
my $table = Data::Tabular::Output::HTML->new(table => $t, output => $o); print $table;
Note that if the object is used as a string the table is rendered.

Normally this object is constructed by the Data::Tabular::html method.
It requires two arguments: a table and and an output object.

This method returns a string that is an HTML table.

"G. Allen Morris III" <gam3@gam3.net>