diff options
author | tumashu1 <tumashu1@web> | 2018-11-26 04:44:35 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2018-11-26 04:44:35 -0400 |
commit | 67968e39b3e61a20761f03e941ced0a777b2f5e6 (patch) | |
tree | 596760b6ed2957fafb76b604c43774bd3bb2ba00 /doc | |
parent | e4e7d7381d50608aacfbefba054a2ff4f516625a (diff) | |
download | ikiwiki-67968e39b3e61a20761f03e941ced0a777b2f5e6.tar ikiwiki-67968e39b3e61a20761f03e941ced0a777b2f5e6.tar.gz |
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/table_can_not_deal_with_Chinese_.mdwn | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/bugs/table_can_not_deal_with_Chinese_.mdwn b/doc/bugs/table_can_not_deal_with_Chinese_.mdwn new file mode 100644 index 000000000..e3980293b --- /dev/null +++ b/doc/bugs/table_can_not_deal_with_Chinese_.mdwn @@ -0,0 +1,15 @@ +Table directive can not deal with Chinese, when format csv + + \[[!table format=csv data=""" + a,b,c + 1,2,你好 + """ + ]] + +But the below example works well. + + \[[!table format=csv data=""" + a,b,c + 1,2,3 + """ + ]] |