If a newline is included in a text field, such as the description, the backslash in \n is first doubled by the parser (so converted to \\n), then the \n is parsed. This results in \\n being included in the final ICS export, which is shown in calendar tools as \n instead of a newline. This PR fixes that, to make sure an intentional \n in the input is also exported as a newline.
If a newline is included in a text field, such as the description, the backslash in
\n
is first doubled by the parser (so converted to\\n
), then the\n
is parsed. This results in\\n
being included in the final ICS export, which is shown in calendar tools as\n
instead of a newline. This PR fixes that, to make sure an intentional\n
in the input is also exported as a newline.