Join Slack
Powered by
DatastarFragmentRenderer strips newlines from temp...
# http4k
e
Emily
05/09/2025, 1:49 PM
DatastarFragmentRenderer strips newlines from templates with
String.replace("\n", "")
. This silently breaks with template files using CRLF. A simple solution could be to change it to
String.replace("\r\n", "").replace("\n", "")
.
d
dave
05/09/2025, 2:01 PM
thank you! We'll put that in for the next release 🙂
Open in Slack
Previous
Next