hi, the csv parser is stripping all quotations from body text. i've tried uploading paragraphs with quotes, such as
he said to her, "how are you"

and they get parsed as he said to her, how are you with quotes removed. all else is working properly, they do go to the right fields. but i need the quotes in the body.

Comments

j0e’s picture

in the meantime, i used feeds tamper latest dev version to do this by converting all quotes to html entities and then using decoding plugin...

gisle’s picture

Component: Feeds Import » Code
Category: Bug report » Support request
Issue summary: View changes

This is not really a bug. To have double quotes in a csv-file you need to add another double quote. This is the "standard" for cvs-files. Also note that Feeds will strip both unless they're inside a double quoted field.

The following will import the field in your example the way you want it to appear:

"he said to her, ""how are you"""

twistor’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

jomarocas’s picture

ok i understand how works, for the people finding information about quotes

i have this in my importer

src="/sites/default/files/images/stories/LOGO.png"

but when i see the boy appears this

src=/sites/default/files/images/stories/LOGO.png

without quotes

and working with 3 quotes

src="""/sites/default/files/images/stories/LOGO.png"""

is the logic on this, thanks for ideas