pandoc-csv2table
pandoc-csv2table copied to clipboard
bug of converting table which contains 2-character-width character
test.csv
你好,世界
Hello,World!
test.md

pandoc -o output.md --filter pandoc-csv2table test.md
output.md
+--------+--------+
| 你好 | | 世界 |
+========+========+
| Hello | World! |
+--------+--------+
it is not right, because the right should be
+--------+--------+
| 你好 | 世界 |
+========+========+
| Hello | World! |
+--------+--------+
Thanks!
@Freed-Wu Thanks for reporting the issue. I will look into it as I find time.