Re: JSON escaping

2013-02-08 Thread Jonathon McKitrick
I'm switching from Noir to Compojure anyway, so this would be a good time to ask... are there better alternatives to Cheshire? On Friday, February 8, 2013 6:35:43 PM UTC-5, Casper Clausen wrote: > > Don't know about cheshire, but the newest version of clojure.data.json has > a :escape-slash opti

Re: JSON escaping

2013-02-08 Thread Casper Clausen
Don't know about cheshire, but the newest version of clojure.data.json has a :escape-slash option which does the trick. On Saturday, February 9, 2013 12:18:50 AM UTC+1, Jonathon McKitrick wrote: > > I'm generating JSON for salesforce/apex consumption, and apparently Apex > does not like correctl

JSON escaping

2013-02-08 Thread Jonathon McKitrick
I'm generating JSON for salesforce/apex consumption, and apparently Apex does not like correctly escaped JSON with backslashes. But Cheshire (the JSON library I'm using) does not seem to have an option to generate JSON without escaped content. Is there a simple way to solve this problem? I'm