Hi and thank you for this great Markdown converter! Here is how to reproduce the issue (please note the empty `<td></td>`): ``` php $converter_extra = new Markdownify\ConverterExtra; echo $converter_extra->parseString('<table> <thead> <tr> <th>First Header</th> <th>Second Header</th> </tr> </thead> <tbody> <tr> <td>Content Cell</td> <td>Content Cell</td> </tr> <tr> <td></td> <td>Content Cell</td> </tr> </tbody> </table>'); ``` The above PHP code outputs that _same_ HTML table. Expected output: ``` md | First Header | Second Header | | ------------ | ------------- | | Content Cell | Content Cell | | | Content Cell | ``` Please note that adding a _space_ (`<td> </td>`) fixes the issue.