Closed mulderr closed 4 years ago
Attempts to fix #98
Up for review. Please see the issue for details. Deceptively simple so even I'm suspicious :) Tests pass.
In short, currently, the parser fails on unescaped fields containing " such as abc "d". This allows such fields to be parsed.
"
abc "d"
Ah, mystery solved. This seems to violate RFC4180:
If fields are not enclosed with double quotes, then double quotes may not appear inside the fields.
I'll just close this I guess ;/ Sorry for the noise.
Attempts to fix #98
Up for review. Please see the issue for details. Deceptively simple so even I'm suspicious :) Tests pass.
In short, currently, the parser fails on unescaped fields containing
"
such asabc "d"
. This allows such fields to be parsed.