Escaped strings in JSON
Created by: shreyasbharath
Hello again,
Say if we were to parse JSON that looked like this -
{
"message": "\"Hello there\""
}
When we read it out like so -
JsonObject root = parser->parse( json );
const char *message = root["message"];
// Shouldn't we be getting the unescaped form here?
I noticed that we still get the escaped form. Perhaps this is a bug in Jsmn?