Cells that span two or more rows
Capture table cells that span two or more rows using the morerows attribute on the entry element.
A cell that spans two rows should have a value of attribute morerows="1". When a cell is extended to a second row, the second row should not contain a cell with the same colnum value of the extended cell.
You must specify vertical alignment in cells that span more than one row.
The XML below two rows of a three column table in which the first cell spans both rows.
It also shows a cell in the first row spanning two columns.
Example with two rows of a three column table in which the first cell spans both rows
Desired table
XML
<row>
<entry colname="col1" morerows="1" valign="bottom"><p>Data</p>
</entry>
<entry namest="col2" nameend="col3"><p>Year</p>
</entry>
</row>
<row rowsep="1">
<entry colname="col2"><p>2006</p>
</entry>
<entry colname="col3"><p>2007</p>
</entry>
</row>