Like in Python you can do:
node1="""Just a string "with" quotes!"""
as described here: https://github.com/lightbend/config/blob/master/HOCON.md#multi-line-strings
Configurate reads it correctly but always saves it back as followed:
node1="Just a string \"with\" quotes!"
I suggest there should be some type of option to enable triple quotes for strings that contain a least one " quote.
Like in Python you can do:
as described here: https://github.com/lightbend/config/blob/master/HOCON.md#multi-line-strings
Configurate reads it correctly but always saves it back as followed:
I suggest there should be some type of option to enable triple quotes for strings that contain a least one
"quote.