docling/tests/data/html/example_04.html
Peter Staar baaeb60b4a add real e2e tests for html and docx
Signed-off-by: Peter Staar <taa@zurich.ibm.com>
2024-10-29 05:36:23 +01:00

25 lines
676 B
HTML

<html>
<body>
<h1>Data Table with Rowspan and Colspan</h1>
<table>
<tr>
<th>Header 1</th>
<th colspan="2">Header 2 & 3 (colspan)</th>
</tr>
<tr>
<td rowspan="2">Row 1 & 2, Col 1 (rowspan)</td>
<td>Row 1, Col 2</td>
<td>Row 1, Col 3</td>
</tr>
<tr>
<td colspan="2">Row 2, Col 2 & 3 (colspan)</td>
</tr>
<tr>
<td>Row 3, Col 1</td>
<td>Row 3, Col 2</td>
<td>Row 3, Col 3</td>
</tr>
</table>
</body>
</html>