mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 13:15:51 +00:00
...when `styles` extension is enabled. Closes #9603. Also improve manual's coverage of custom styles.
24 lines
343 B
Markdown
24 lines
343 B
Markdown
```
|
|
% pandoc command/9603.docx -t html -f docx+styles
|
|
^D
|
|
<p>A table with a contemporary style:</p>
|
|
<table data-custom-style="TableContemporary">
|
|
<colgroup>
|
|
<col style="width: 50%" />
|
|
<col style="width: 50%" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>Test</th>
|
|
<th>Column</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>1</td>
|
|
<td>2</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
```
|