Replies: 1 comment 4 replies
-
@StefanBertels I'd like your opinion here if have a minute. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
RFC 4180 states that a line ending is CRLF and if a CR or LF is in a field, it doesn't need to be escaped. Currently the parser looks for CR, LF, or CRLF. This presents a problem reading a file that is actually valid where the field contains a CR or LF and the line endings are CRLF.
Changing the line ending from being either CRLF, CR, or LF, to specific string that you set that would default to CRLF would fix this issue, but could cause another. People on Linux systems that used the system line ending of LF instead of the correct CRLF would need to specify their line ending. This means files won't parse automatically. I don't know what the majority of files written on Linux use for line endings, so I don't know how prevalent this is.
Thoughts?
#1632
Beta Was this translation helpful? Give feedback.
All reactions