Converts HTML tables to Markdown. Paste table HTML in, click Convert.
See:
Sample HTML input taken from Chrome Right Click > Inspect.
<table>
<thead>
<tr>
<th>Heading</th>
<th>Verified</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1</td>
<td>Yes</td>
</tr>
<tr>
<td>Row 2</td>
<td>No</td>
</tr>
<tr>
<td>Row 3</td>
<td>Maybe</td>
</tr>
</tbody>
</table>Output:
| Heading | Verified |
| --- | --- |
| Row 1 | Yes |
| Row 2 | No |
| Row 3 | Maybe |Output rendered as markdown:
| Heading | Verified |
|---|---|
| Row 1 | Yes |
| Row 2 | No |
| Row 3 | Maybe |
- Pretty format the output
- Provide option to remove the opening | for multi-column tables