Closed qasimmehdi closed 2 years ago
You can fix it by providing a correct HTML code. It's already very difficult to deal with tables, so you'll have to provide the correct number of cells, either by doing:
<table>
<tbody>
<tr>
<td>1000</td>
<td>2000</td>
</tr>
<tr>
<td colspan="2">3000</td>
</tr>
</tbody>
</table>
Or:
<table>
<tbody>
<tr>
<td>1000</td>
<td>2000</td>
</tr>
<tr>
<td>3000</td>
<td></td>
</tr>
</tbody>
</table>
This issue has been automatically closed because the requestor didn't provide any additional comment.
If the number of cells is less than previous rows there is an error
Malformed table row, a cell is undefined.
How can I fix it?HTML:
JSON: