aboutsummaryrefslogtreecommitdiff
path: root/test/command/8764.md
blob: 919f8c7387e5955460e7ab4e094159241a14596e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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_Heading">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_Heading">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>
```