SebTags 1.0 Documentation: Format

Format

The HTML for a form can be output in a table (with labels in the left column and inputs on the right) or semantic (using just divs, labels, and inputs.

To control this, use the "format" attribute. It has two possible values:

Semantic

A format of "semantic" will produce HTML similar to the following:

<div>
   <label ...>Label</label>
   <input ...>
</div>

Table

A format of "table" will produce HTML similar to the following:

<table>
<tr>
   <td><label ...>Label</label></td>
   <td><input .../></td>
</tr>
</table>