I'm attempting to use mustache.js as a templating system for JSON data that I'm getting back from an external API. The trouble is that the JSON object has keys that begin with hashes and I'm not sure how to deal with them. Example of object (and a total simplification):
{
"items": [
"description": {
"#cdata-section": "Description goes here"
}
]
}
Mustache.js:
var template = '{{#items}}' +
'{{#description}}' +
'{{cdata-section}}' +
'{{/description}}' +
'{{/items}}';
Obviously it won't recognize cdata-section because that's not the name of the key. I can't use {{#cdata-section}} because the hash symbolizes conditionals or enumerables in Mustache.js. I can't seem to escape it either, {{\#cdata-section}} matches nothing.
Is there a way around this? Or do I have to pre-process the JSON object?
#so there is not quite a way I think: github.com/janl/mustache.js/blob/master/mustache.js#L100. Theincludefunctions just usesindexOf. – pimvdb Jul 26 '11 at 13:14#nor a^, so if it has one or the other, it will proceed with the function. – Austin Hyde Jul 26 '11 at 13:23