d1875b69ec
The interpretation of this line is not affected by the delim option. Closes #7064.
32 lines
527 B
Markdown
32 lines
527 B
Markdown
```
|
|
% 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>
|
|
```
|