html-to-md
html-to-md copied to clipboard
Tables contained inside of lists are not parsed correctly
Input:
<ul>
<li>
<p>foo</p>
<table>
<thead>
<tr>
<th>foo</th>
<th>bar</th>
</tr>
</thead>
<tbody>
<tr>
<td>baz</td>
<td>qux</td>
</tr>
</tbody>
</table>
</li>
</ul>
Actual:
* foo
|foo|bar|
|---|---|
|baz|qux|
Expected:
* foo
|foo|bar|
|---|---|
|baz|qux|
@adaboese Thanks the report, will solve it recently