pandoc-csv2table icon indicating copy to clipboard operation
pandoc-csv2table copied to clipboard

bug of converting table which contains 2-character-width character

Open Freed-Wu opened this issue 5 years ago • 1 comments

test.csv

你好,世界
Hello,World!

test.md

![](test.csv)
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 avatar Jun 02 '20 05:06 Freed-Wu

@Freed-Wu Thanks for reporting the issue. I will look into it as I find time.

vmandela avatar Sep 30 '20 11:09 vmandela