I am sending a big json file from server to jade, but the " are replaced with: " therefor the json is unreadable/unparsable and I get this error:
Uncaught SyntaxError: Unexpected token & I send the data like this from node:
res.render(view, {world:{name:"SomeName",width:50},otherdata:{...}}); and then get it in jade like this:
doStuff(JSON.parse(#{data})); and here it is unreadable data which looks like:
{world:{name:"SomeName",width:50... can I somehow disable the conversion of the quotes?