I am trying to use a dust.js template with JSON data that has keys that contain special characters, like ":" and "#".
How can I specify these keys in my template?
For example:
JSON data:
{
"opensearch:totalResults": 200,
"#text": "some data"
}
dust.js template:
<div>There are {opensearch:totalResults} items found</div>
This does not resolve correctly and simply prints the template text instead of replacing with the JSON data.