mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-21 06:55:46 +00:00
RST reader: fix handling of header in CSV tables.
The interpretation of this line is not affected by the delim option. Closes #7064.
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
```
|
||||
% pandoc -f rst -t html
|
||||
.. csv-table:: Changes
|
||||
:header: "Version", "Date", "Description"
|
||||
:widths: 15, 15, 70
|
||||
:delim: $
|
||||
|
||||
0.1.0 $ 18/02/2013 $ Initial Release
|
||||
^D
|
||||
<table>
|
||||
<caption>Changes</caption>
|
||||
<colgroup>
|
||||
<col style="width: 15%" />
|
||||
<col style="width: 15%" />
|
||||
<col style="width: 70%" />
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr class="header">
|
||||
<th>Version</th>
|
||||
<th>Date</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr class="odd">
|
||||
<td>0.1.0</td>
|
||||
<td>18/02/2013</td>
|
||||
<td>Initial Release</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
```
|
||||
Reference in New Issue
Block a user