One thing I like in C/C++ is ability to code string literals in multiple lines while keeping indentation.
Currently with JSON5 best we can do is to use back-slashes which kill indentation:
{
text: "Dobra dobra \
zupa z bobra."
}
What I'd love to see in JSON5 is:
{
text: "Dobra dobra "
"zupa z bobra."
}
Limiting it to be not allowed on object's keys would be fine for me.
One thing I like in C/C++ is ability to code string literals in multiple lines while keeping indentation. Currently with JSON5 best we can do is to use back-slashes which kill indentation:
What I'd love to see in JSON5 is:
Limiting it to be not allowed on object's keys would be fine for me.