-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent newline encoding & decoding? #87
Comments
The following patch seems to fix the test: --- src/parser/utils.rs
+++ src/parser/utils.rs
@@ -81,6 +81,7 @@ pub fn line_separated<'a, O, E: ParseError<&'a str>, F: Parser<&'a str, O, E>>(
/// ```
pub fn unfold(input: &str) -> String {
input
+ .replace("\\n", "\n")
.split("\r\n ")
.flat_map(|l| l.split("\n "))
.flat_map(|l| l.split("\r\n ")) though I am not convinced that it is doing truly the correct thing at the right point in time (one indication being that it causes the |
I recently experienced issues with newlines in ICS files. In short: Some downstream software might not have a fully RFC5545 compliant implementation and only allow For reference, this was first reported in qwandor/dancelist#511. That software does not do any icalendar stuff itself but relies on this library. The non-RFC5545-compliant were found further downstream. I am aware that this might be slightly different than the topic originally reported, but maybe close enough, that it would fit here as well. |
I am not sure if the following is expected behavior:
This test fails:
It seems as if newlines are encoded to
\\n
(correct) but then never decoded back to\n
in this scenario. I'd expect that at the level of aTodo
object, I as the user shouldn't have to deal with such encoding matters -- it should all happen transparently. So I am wondering: Is this behavior intended?The text was updated successfully, but these errors were encountered: