Pluto ec209c6b5f
Remove IDs from HTML code (#4012)
In this pull request parent-child relationship for elements generated
with v2 parser is based on actual element IDs instead of IDs baked
somewhere in the HTML script.
With some extra bug fixing it allowed for significantly simplifying json
-> HTML script
2025-06-11 11:55:02 +00:00

150 lines
1.6 KiB
HTML

<body class="Document">
<table class="Table">
<tr>
<th>
Header 1
</th>
<th>
Header 2
</th>
</tr>
<tr>
<td>
Row 1, Cell 1
</td>
<td>
Row 1, Cell 2
</td>
</tr>
<tr>
<td>
Row 2, Cell 1
</td>
<td>
Row 2, Cell 2
</td>
</tr>
</table>
<table>
<tr>
<th colspan="3">
Big Table Header
</th>
</tr>
<tr>
<td rowspan="2">
Merged Cell 1
</td>
<td>
Cell 2
</td>
<td>
Cell 3
</td>
</tr>
<tr>
<td colspan="2">
Merged Cell 4 and 5
</td>
</tr>
<tr>
<td>
Cell 6
</td>
<td>
Cell 7
</td>
<td>
Cell 8
</td>
</tr>
<tr>
<td>
Cell 9
</td>
<td colspan="2">
A cell with a lot of text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</td>
</tr>
<tr>
<td>
Cell 10
</td>
<td>
Cell 11
</td>
<td>
Cell 12
</td>
</tr>
</table>
<table class="TableOfContents">
<tr>
<th>
Chapter
</th>
<th>
Title
</th>
<th>
Page
</th>
</tr>
<tr>
<td>
1
</td>
<td>
Introduction
</td>
<td>
1
</td>
</tr>
<tr>
<td>
2
</td>
<td>
Getting Started
</td>
<td>
5
</td>
</tr>
<tr>
<td>
3
</td>
<td>
Basic Concepts
</td>
<td>
12
</td>
</tr>
<tr>
<td>
4
</td>
<td>
Advanced Topics
</td>
<td>
25
</td>
</tr>
<tr>
<td>
5
</td>
<td>
Conclusion
</td>
<td>
40
</td>
</tr>
</table>
</body>