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
This commit is contained in:
Tom Moor
2020-10-21 08:53:59 -07:00
committed by GitHub
parent b78e2f1e05
commit df7b9f3e88
9 changed files with 394 additions and 3 deletions

26
server/test/fixtures/tables.html vendored Normal file
View File

@@ -0,0 +1,26 @@
<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>