<row>

Description

A row of cells in a table's body.

Attributes

No attributes other than standard attributes are defined for <row> elements.

Immediate descendants

Element name Description
<cell> A cell in the row.

Immediate ancestors

Element name Relation
<body> The enclosing body element of the row.

Example

<document xmlns="http://boradoc.org/1.0">
  <chapter>
    <table>
      <body>
        <row>
          <cell>header cell 1</cell>
          <cell>header cell 2</cell>
        </row>
      </body>
    </table>
  </chapter>
</document>

The above BDML renders to the following:

header cell 1 header cell 2