What does HackerNews think of Deco?

Delimiter Collision Free Format

Language: C++

If you like JSON that much, obviously you haven't yet seen https://github.com/Enhex/Deco
i was annoyed by the verbosity of XML when using it for config files at my workplace so i tried to design maximally human readable & writable text file format, which turned out to be extremely concise and fast: https://github.com/Enhex/Deco

after trying at least dozen C++ GUI libs and none of them being good enough (license, limited portability, limited customability,...) i started making my own one which is OpenGL based, got automatic layouting, separation of concerns of layout/style/logic, permissive license, and provides building blocks to make your own widgets. https://github.com/Enhex/GUI

I actually think this is a great idea. There are a few immediate questions I have though.

1) how does one define a key with a ": "

2) as others said, significant whitespace, specifically trailing, seems to lead problems with keys that have nested key/val, array, multiline string.

3) the github repo associated with the parser has an isue that questions how to verify if the file was truncated.

I think Deco: https://github.com/Enhex/Deco better solves the problem the OP has. It is provably delimiter collision free, unlike this (see my point 1 Unless I'm mistaken).