aboutsummaryrefslogtreecommitdiff
path: root/test/command/5899.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/5899.md')
-rw-r--r--test/command/5899.md51
1 files changed, 51 insertions, 0 deletions
diff --git a/test/command/5899.md b/test/command/5899.md
new file mode 100644
index 000000000..28e020d20
--- /dev/null
+++ b/test/command/5899.md
@@ -0,0 +1,51 @@
+```
+% pandoc -f html -t rst
+<html>
+ <body>
+ <ul>
+ <li>A list of stuff with a table inside
+ <table>
+ <thead>
+ <tr>
+ <th>First</th><th>Second</th><th>Third</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>First</td>
+ <td>
+ The big long table cell.
+ The big long table cell.
+ The big long table cell.
+ The big long table cell.
+ The big long table cell.
+ The big long table cell.
+ The big long table cell.
+ The big long table cell.
+ The big long table cell.
+ The big long table cell.
+ </td>
+ <td>Third</td>
+ </tr>
+ </tbody>
+ </table>
+ </li>
+ <li>Another list item</li>
+ </ul>
+ </body>
+</html>
+^D
+- A list of stuff with a table inside
+
+ +-------+----------------------------------------------------+-------+
+ | First | Second | Third |
+ +=======+====================================================+=======+
+ | First | The big long table cell. The big long table cell. | Third |
+ | | The big long table cell. The big long table cell. | |
+ | | The big long table cell. The big long table cell. | |
+ | | The big long table cell. The big long table cell. | |
+ | | The big long table cell. The big long table cell. | |
+ +-------+----------------------------------------------------+-------+
+
+- Another list item
+ ```