mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
4ef4c5e674
Under certains conditions, raw html inside code tags in tables would break table parsing. This commit fixes that. Closes #471
14 lines
323 B
HTML
14 lines
323 B
HTML
<table>
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:right;">h1</th>
|
|
<th style="text-align:left;">h2</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td style="text-align:right;">asdf</td>
|
|
<td style="text-align:left;">one <code>two <ol> three</code></td>
|
|
</tr>
|
|
</tbody>
|
|
</table> |