```
% 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>
<th>Version</th>
<th>Date</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>0.1.0</td>
<td>18/02/2013</td>
<td>Initial Release</td>
</tr>
</tbody>
</table>
```