mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-15 20:15:41 +00:00
In this case we'll treat them all as the header in order to preserve the order. Added test case for #11833.
41 lines
568 B
Markdown
41 lines
568 B
Markdown
```
|
|
% pandoc command/11833.docx -t html
|
|
^D
|
|
<table>
|
|
<colgroup>
|
|
<col style="width: 39%" />
|
|
<col style="width: 9%" />
|
|
<col style="width: 35%" />
|
|
<col style="width: 15%" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>VENDOR SERVICE MODEL</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
<tr>
|
|
<th>Question</th>
|
|
<th>Response</th>
|
|
<th>Comments</th>
|
|
<th>Evidence Reference</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>question1</td>
|
|
<td>response1</td>
|
|
<td>comment1</td>
|
|
<td>evidence1</td>
|
|
</tr>
|
|
<tr>
|
|
<td>question 2</td>
|
|
<td>response 2</td>
|
|
<td>comment 2</td>
|
|
<td>evidence 2</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
```
|