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:
26
server/test/fixtures/tables.html
vendored
Normal file
26
server/test/fixtures/tables.html
vendored
Normal 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>
|
||||
Reference in New Issue
Block a user