The body section of a table.
Table body elements contain <row> elements.
See the <table> element for more information on creating tables.
No attributes other than standard attributes are defined for <body> elements.
Element name | Description |
---|---|
<row> | A row in the table body. |
Element name | Relation |
---|---|
<table> | The owning table. |
<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 |