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

CSV is not escaped. #28

Open
iMoppel opened this issue Dec 21, 2023 · 1 comment
Open

CSV is not escaped. #28

iMoppel opened this issue Dec 21, 2023 · 1 comment

Comments

@iMoppel
Copy link

iMoppel commented Dec 21, 2023

CSV data is not escaped correctly, a quote character (") should be escaped as a double quote("").

Example:
"The "elephant" in the room. "
Should be:
"The ""elephant"" in the room. "

It should also be un-escaped before import.

@esamelzain
Copy link
Collaborator

esamelzain commented Jan 4, 2024

If you mean from Json to CSV, yes we have an issue there
But {"The ""elephant"" in the room. "} is not a valid Json I think it should be {"The \"elephant\" in the room. "} when exporting to CSV will be {The "elephant" in the room. }
Please correct me if I am wrong

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