I'm attempting Ruby on Rails app csv export for bulk upload of products to Amazon in Unicode format.
Amazon's bulk product template requires it to be saved as unicode text before uploading. Most of my fields where there's a single entity like a catalogue number or barcode are fine but i'm having difficulties with the description field where it's a block of text. I tried a sample upload of two products that were fine in the CSV, however, the unicode upload didn't recognise the start/end of the description field and Amazon's uploader viewed this as 6 lines of data.
In short, does anyone know how I can ensure blocks of text are delimited / escaped or encoded in such a way that they'll be recognised as belonging to the description column/field and not spread into other fields?
Many thanks in advance.