This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/test/fixtures/tables.html
Tom Moor df7b9f3e88
feat: Add support for "word" files exported from Confluence (#1600)
* Display error message to end user

* fix: Improve conversion of tables

* fix: Characters at ends of lines in tables lost
2020-10-21 08:53:59 -07:00

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>