Fields with line breaks \n
Startouf opened this issue · 1 comments
Startouf commented
I need to export text fields that contain several line breaks \n. They are not escaped and when transforming to csv, they generate extra rows.
model Profile
field :description
# Sample description
# "Hello,\n I'm here to destroy your CSV export 3:D"
end
Is there a way to escape them ? Or should I just define a description_escaped method that would substitute those \n by another separator ?