I think you need to read the file using tFileInputDelimited with CSV options and then use tJavaRow to remove the linefeeds.
If the linefeed is always in the same field, just use e.g. output_row.field3 = input_row.field3.replace("\\r\\n\r\n","");
If you don't know which field has the linefeed or it can change from row to row, you'll have to use reflection to loop through all the fields doing the replace. I've never used reflection myself, having only very basic Java knowledge but this topic (
https://community.talend.com/t5/Design-and-Development/resolved-Automatically-trim-non-String-fields...) should help you hopefully.