A row of cells in a table's body.
No attributes other than standard attributes are defined for <row> elements.
Element name | Description |
---|---|
<cell> | A cell in the row. |
Element name | Relation |
---|---|
<body> | The enclosing body element of the row. |
<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 |