How can I handle very long strings in Play's application.conf? Suppose I have:
my.value.param = "Very very very very long line"
and I want to split long line like
my.value.param = "Very very very "
+ "very long line"
How can I do this using HOCON format? Thanks