Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
Freed-Wu opened this issue Jun 2, 2020 · 1 comment
Open
Assignees

Comments

@Freed-Wu
Copy link

Freed-Wu commented Jun 2, 2020

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!

@vmandela
Copy link
Collaborator

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

@vmandela vmandela self-assigned this Sep 30, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants