>This means that the existing JSON based preferences files are incorrect.
> They currently look like this:
>
>{
> key1 : "Value1",
> key2 : "Value2"
>}
>
>Really they should look like this:
>{
> "key1" : "Value1",
> "key2" : "Value2"
>}
We support both styles. I believe this is a common extension to the JSON
standard. We also support single-quoted string values, because it is easier to
use them in WTKX:
<Label styles="{color:'#ff0000'}"/>
