Comma breaks CSV import/export
jd1 opened this issue · 0 comments
jd1 commented
Expected Behavior
When I export tasks that contain a ,
, I expect that this character is somehow escaped and not written like a separator in CSV. At the moment the values are concatenated by this code csvText += nextValue + ','
Try export and import this board and see what happens.
Actual Behavior
,
is escaped, so I can export and import the board above without problems.
Maybe use a CSV library.