<body>

Description

The body section of a table.

Table body elements contain <row> elements.

See the <table> element for more information on creating tables.

Attributes

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

Immediate descendants

Element name Description
<row> A row in the table body.

Immediate ancestors

Element name Relation
<table> The owning table.

Example

<document xmlns="http://boradoc.org/1.0">
  <chapter>
    <table>
      <body>
        <row>
          <cell>first cell</cell>
          <cell>second cell</cell>
        </row>
      </body>
    </table>
  </chapter>
</document>

The above BDML renders to the following:

first cell second cell