When exporting a Table Cell Element, the contents of the cell are not exported. For example, a table cell with a paragraph that says "Hello world" should export the following:
<table>
<tr>
<td><p>Hello World</p></td>
</tr>
</table>
Or:
<table>
<tr>
<td><TextFlow><p>Hello World</p></TextFlow></td>
</tr>
</table>
but currently it is only exporting:
<table>
<tr>
<td />
</tr>
</table>
Steps to reproduce:
- Open Table Explorer
- Click Add Editable Table
- Type content into the first cell
- Check the Text Flow output text area
It should be showing the contents of the cell but it currently does not.