diff options
| author | John MacFarlane <[email protected]> | 2023-08-18 17:50:59 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-08-18 17:50:59 -0700 |
| commit | 068fce4293eb139f54d4825e1dbdcaf35e34da03 (patch) | |
| tree | b8bf3cd3919a87055a13ef54367e9cb9ff4da849 /test/command | |
| parent | bd4de143d076fc46e3c7b6b5e95e421585780639 (diff) | |
Docx reader: omit "Table NN" from caption.
Closes #9002.
Diffstat (limited to 'test/command')
| -rw-r--r-- | test/command/9002.docx | bin | 0 -> 12631 bytes | |||
| -rw-r--r-- | test/command/9002.md | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/test/command/9002.docx b/test/command/9002.docx Binary files differnew file mode 100644 index 000000000..4722c53e5 --- /dev/null +++ b/test/command/9002.docx 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> +``` |
