quantizor / markdown-to-jsx

🏭 The most lightweight, customizable React markdown component.
https://markdown-to-jsx.quantizor.dev/
MIT License
1.97k stars 169 forks source link

incorrect table render #513

Open HZ-labs opened 1 year ago

HZ-labs commented 1 year ago

Markdown

description:

|9563|Some|Some text|
| --- | --- | --- |

renders to html with extra row and td

<table>
  <thead>
    <tr>
      <th>9563</th>
      <th>Some</th>
      <th>Some text</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td></td>
    </tr>
  </tbody>
</table>
image

Is it posible to clear tbody o return table without tbody?