-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Closed
Labels
Description
Consider:
<table>
<tr>
<td colspan="2">A</td>
</tr>
<tr>
<td>B</td>
<td>C</td>
</tr>
</table>
Result after markdown conversion:
+---+
| A |
+---+
| B | C |
+---+---+
Expected:
+-------+
| A |
+---+---+
| B | C |
+---+---+
I suggest using the planets.html as a general test.