pyhocon
pyhocon copied to clipboard
Unable to handle slash '\' correctly in json input
As json defined, the slash ‘/’ in string must be escaped like '\/', but pyhocon can't handle it correctly.
# echo '{"path":"\/var"}' | pyhocon
{
"path": "\\/var"
}