4.37. html-table

Builds an HTML table

4.37.1. Summary

    [html-table other_named_attributes]
Parameters Description Default
columns Whitespace-delimited list of columns DEFAULT_VALUE
delimiter Line delimiter to use if tag body is delimited text rather than an array reference (default "\t") DEFAULT_VALUE
fc HTML attributes for <TD> in the first cell DEFAULT_VALUE
fr HTML attributes for <TR> in the first row DEFAULT_VALUE
record_delim Record delimiter to use if tag body is delimited text rather than an array reference (default "\n") DEFAULT_VALUE
td HTML attributes for <TD> DEFAULT_VALUE
th HTML attributes for <TH> DEFAULT_VALUE
tr HTML attributes for <TR> DEFAULT_VALUE
Attributes Default
interpolate No
reparse Yes
Other_Characteristics  
Invalidates cache no
Container tag Yes
Has Subtags No
Nests No

Tag expansion example:

    [html-table]
---
    TODO: (tag result)

ASP-like Perl call:

   $Tag->html_table(  {
}, $body  );

or similarly with positional parameters,

    $Tag->html_table(, $attribute_hash_reference, $body);

4.37.2. Description

Builds an HTML table

4.37.2.1. columns

Whitespace-delimited list of columns

4.37.2.2. delimiter

Line delimiter to use if tag body is delimited text rather than an array reference (default "\t")

4.37.2.3. fc

HTML attributes for <TD> in the first cell

4.37.2.4. fr

HTML attributes for <TR> in the first row

4.37.2.5. record_delim

Record delimiter to use if tag body is delimited text rather than an array reference (default "\n")

4.37.2.6. td

HTML attributes for <TD>

4.37.2.7. th

HTML attributes for <TH>

4.37.2.8. tr

HTML attributes for <TR>