How do i set up the spacing data for characters such as " and / as it won't accept them because it interferes with the json code? Oddly enough it accepts [ ] though.
eg.
[4, """], [8, "/"], [10, "aeou"], [12, "mvw"]]
Develop games in your browser. Powerful, performant & highly capable.
You have to 'escape' quotes and backslash with a backslash.
[4, "\""]
[5, "\\"]
Forward-slash is fine.