As we know, json key/value pairs use straight- or dumb-quotes, like this:"instruction": "Select the plus-sign to continue."
If I want to introduce quotes inside the json, I can do it in a couple of ways:"instruction": "Select “+” to continue."
"instruction": "Select \"+\" to continue."
Forget for the moment that the entities in the example create smart-quotes and the escaped quotes create dumb-quotes. Is one strategy (entities vs escaping) more accessible to screen readers than the other? Is there another way that is preferred for the sake of accessibility?
Thanks in advance!
- Chuck