4.36. html_table
Builds an HTML table
4.36.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 |
| ATT1 | none |
| interpolate | No |
| reparse | Yes |
| Other_Charactreristics | |
| Invalidates cache | no |
| Container tag | Yes |
| Has Subtags | No |
| Nests | No |
Tag expansion example:
[html_table ] --- TAGRESULT
ASP-like Perl call:
$Tag->html_table( {
}, $body );
or similarly with positional parameters,
$Tag->html_table(, $attribute_hash_reference, $body);
4.36.2. Description
Builds an HTML table
4.36.2.1. columns
Whitespace-delimited list of columns
4.36.2.2. delimiter
Line delimiter to use if tag body is delimited text rather than an array reference (default "\t")
4.36.2.3. fc
HTML attributes for <TD> in the first cell
4.36.2.4. fr
HTML attributes for <TR> in the first row
4.36.2.5. record_delim
Record delimiter to use if tag body is delimited text rather than an array reference (default "\n")
4.36.2.6. td
HTML attributes for <TD>
4.36.2.7. th
HTML attributes for <TH>
4.36.2.8. tr
HTML attributes for <TR>