Content of reST file:
+----+
| ç̌ |
+----+
Expected results:
<table border="1" class="docutils">
<colgroup>
<col width="100%" />
</colgroup>
<tbody valign="top">
<tr><td>ç̌</td>
</tr>
</tbody>
</table>
Real results:
<table border="1" class="docutils">
<colgroup>
<col width="100%" />
</colgroup>
<tbody valign="top">
<tr><td>ç̌ |</td>
</tr>
</tbody>
</table>
“ç̌” is composed of two Unicode characters: a c-cedilla and a combining caron.
Thank you for the report.
Combining characters in grid tables are known to be problematic. See [bugs:#128]
Mind, that the intended behaviour would be to get the "expected" result with the input
For simple tables, you can use the simple table syntax, where this problem is fixed:
Related
Bugs: #128
Thanks, I’ll give it a try. 👍🏻
Fixed in [r10251].
Related
Commit: [r10251]