* Display error message to end user * fix: Improve conversion of tables * fix: Characters at ends of lines in tables lost
26 lines
341 B
HTML
26 lines
341 B
HTML
<html>
|
|
|
|
<body>
|
|
<h1>Heading 1</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Col 1</th>
|
|
<th>Col 2</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Col 1.1</td>
|
|
<td>Col 2.1</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Col 1.2</td>
|
|
<td>Col 2.2</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
|
|
</html> |