I get a JSON object returned to me as follows:
result: {
image: "..."
title: "text text \"text\""
}
I am using underscore.js to render the template however when when it displays the title it includes the \" in the text.
e.g text text \"text\"
How can I unescape the the double quotes before displaying?
Thanks