Includes test cases for all block-level structures and some inline-level structures (which should still appear in the table)
20 lines
251 B
HTML
20 lines
251 B
HTML
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>abc</th>
|
|
<th>def</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>bar</td>
|
|
<td>foo</td>
|
|
</tr>
|
|
<tr>
|
|
<td>baz</td>
|
|
<td>boo</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div>Some HTML</div>
|