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
Comment #1
j0e commentedin the meantime, i used feeds tamper latest dev version to do this by converting all quotes to html entities and then using decoding plugin...
Comment #2
gisleThis 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"""Comment #3
twistor commentedComment #5
jomarocas commentedok 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.pngwithout quotes
and working with 3 quotes
src="""/sites/default/files/images/stories/LOGO.png"""is the logic on this, thanks for ideas