Help for this page
# Generate container table my $t = new HTML::ElementTable ( maxrow => 12, maxcol => 3 );
# Populate container table for my $calnum ( 0 .. $#cals ) { my $row = int(my $calnum/4); $t->cell( 0, $calnum )->push_content( $cals[$calnum] ); }