DatastarFragmentRenderer strips newlines from temp...
# http4k
e
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
thank you! We'll put that in for the next release 🙂