pandoc/test/command/7214.md
John MacFarlane 20cd33e5a4 Fix regression in grid tables for wide characters.
In the translation from String to Text, a char-width-sensitive
splitAt' was dropped.  This commit reinstates it.
Closes #7214.
2021-04-08 14:48:29 -07:00

570 B

% pandoc
+------------+----------+------------------+
|日本語      | の文字列 | words in english |
+------------+----------+------------------+
|abc defghij | def      | xyz              |
+------------+----------+------------------+
^D
<table style="width:60%;">
<colgroup>
<col style="width: 18%" />
<col style="width: 15%" />
<col style="width: 26%" />
</colgroup>
<tbody>
<tr class="odd">
<td>日本語</td>
<td>の文字列</td>
<td>words in english</td>
</tr>
<tr class="even">
<td>abc defghij</td>
<td>def</td>
<td>xyz</td>
</tr>
</tbody>
</table>