]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/table_can_not_deal_with_Chinese_.mdwn
d0031fecf3231a743a853327cb4415a7743a4894
[git.ikiwiki.info.git] / doc / bugs / table_can_not_deal_with_Chinese_.mdwn
1 Table directive can not deal with Chinese, when format csv
3     \[[!table format=csv data="""
4     a,b,c
5     1,2,你好
6     """
7     ]]
9 But the below example works well.
11     \[[!table format=csv data="""
12     a,b,c
13     1,2,3
14     """
15     ]]
18 The below example works well too
20     \[[!table format=dsv delimiter=, data="""
21     a,b,c
22     1,2,你好
23     """
24     ]]
26 ----
28 > You don't say what actually happens when you try this, but I hit something similar trying unicode symbols in a CSV-based table. (I wasn't aware of the DSV work-around. Thanks!) The specific error  I get trying is
30     [\[!table Error: Cannot decode string with wide characters at /usr/lib/x86_64-linux-gnu/perl/5.24/Encode.pm line 243.]]
32 > That file is owned by the `libperl5` package, but I think I've seen an error mentioning `Text::CSV` i.e. `libtext-csv-perl` when I've encountered this before. -- [[Jon]]