I have a CSV file in which some of the columns contain multiline text data. See below. Sample file attached.
Array


To import it safely, I have to use bindquotes

Code:
 
 import delimited using "output-16350782302.csv", bindquote(strict) maxquotedrows(10000)
After running my analyses, I want to save the data frame into a new csv (let's say output.csv) Unfortunately, the export doesn't work as expected - the multi-line description_story (and description_risk) gets broken up...`export delimited` command does not have a bindquote(strict) option... Any suggestions on how to safely export this multiline text data?