After receiving a JSON object in the following format:
result: {
image: "..."
title: "text text \"text\""
}
I am currently utilizing underscore.js to render the template, but I am encountering an issue where the title displays with the escaped double quotes.
For example, it appears as: text text \"text\"
Is there a way to unescape the double quotes before displaying them?
Thank you