summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Stahl <michael.stahl@allotropia.de>2023-05-01 13:59:29 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2023-05-01 20:55:37 -0700
commit2881c1274018a31e78ccba647cae4c2764fb5dad (patch)
treecd092b13a0a7e31935b6f6fe6956c58d0de2b56a /test
parent013351f6023a6b8b83e9f8c45d8a8fbc6dcd46f1 (diff)
Writers.OpenDocument: handle row header column cells as ordinary cells
While ODF 1.3 part 3 does specify a 9.1.11 <table:table-header-columns> element, in practice it's only implemented by spreadsheet applications, not word processors. So simply treat the row header columns as ordinary table columns, at least they don't get lost then. Fixes: #8764
Diffstat (limited to 'test')
-rw-r--r--test/command/8764.md50
1 files changed, 50 insertions, 0 deletions
diff --git a/test/command/8764.md b/test/command/8764.md
new file mode 100644
index 000000000..e5fe43d25
--- /dev/null
+++ b/test/command/8764.md
@@ -0,0 +1,50 @@
+```
+% pandoc -f html -t opendocument
+<table>
+ <tbody>
+ <tr>
+ <th>Header</th>
+ <td>Normal cell (column 2)</td>
+ <td>Normal cell (column 3)</td>
+ </tr>
+ <tr>
+ <td>Normal cell (column 1)</td>
+ <td>Normal cell (column 2)</td>
+ <td>Normal cell (column 3)</td>
+ </tr>
+ </tbody>
+</table>
+^D
+<table:table table:name="Table1" table:style-name="Table1">
+ <table:table-column table:style-name="Table1.A" />
+ <table:table-column table:style-name="Table1.B" />
+ <table:table-column table:style-name="Table1.C" />
+ <table:table-row>
+ <table:table-cell table:style-name="TableRowCell" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Header</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="TableRowCell" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Normal cell (column
+ 2)</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="TableRowCell" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Normal cell (column
+ 3)</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row>
+ <table:table-cell table:style-name="TableRowCell" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Normal cell (column
+ 1)</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="TableRowCell" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Normal cell (column
+ 2)</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="TableRowCell" office:value-type="string">
+ <text:p text:style-name="Table_20_Contents">Normal cell (column
+ 3)</text:p>
+ </table:table-cell>
+ </table:table-row>
+</table:table>
+```