aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2023-08-18 17:50:59 -0700
committerJohn MacFarlane <[email protected]>2023-08-18 17:50:59 -0700
commit068fce4293eb139f54d4825e1dbdcaf35e34da03 (patch)
treeb8bf3cd3919a87055a13ef54367e9cb9ff4da849 /test/command
parentbd4de143d076fc46e3c7b6b5e95e421585780639 (diff)
Docx reader: omit "Table NN" from caption.
Closes #9002.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/9002.docxbin0 -> 12631 bytes
-rw-r--r--test/command/9002.md20
2 files changed, 20 insertions, 0 deletions
diff --git a/test/command/9002.docx b/test/command/9002.docx
new file mode 100644
index 000000000..4722c53e5
--- /dev/null
+++ b/test/command/9002.docx
Binary files differ
diff --git a/test/command/9002.md b/test/command/9002.md
new file mode 100644
index 000000000..23915dda1
--- /dev/null
+++ b/test/command/9002.md
@@ -0,0 +1,20 @@
+```
+% pandoc command/9002.docx -t html
+^D
+<table>
+<caption><p>This is my table!</p></caption>
+<colgroup>
+<col style="width: 50%" />
+<col style="width: 50%" />
+</colgroup>
+<thead>
+<tr class="header">
+<th>a</th>
+<th>b</th>
+</tr>
+</thead>
+<tbody>
+</tbody>
+</table>
+<p>See Table 1 This is my table!</p>
+```