mr-data-converter
mr-data-converter copied to clipboard
Output invalid when data has double quotes
Steps to reproduce:
- Paste this into the input field:
name unit
"Attitude ""for"" Men" Shop 5
- Convert the data. For example, the generated JSON Properties data looks like this:
[{"name":"Attitude "for" Men","unit":"Shop 5"}]
The double quotes around "for" need to be escaped.
When using JSON properties, the data is truncated after the first quote, this is quite bad
sector job_title
Études/recherche Directeur de "Plateform for ..."
==>
[{"sector":"Études/recherche","job_title":"Directeur de "}
@Startouf I've patched this issue and added other enhancements in my fork.
Thank you @thdoan!