I'm trying to make Mustache JS output content without parsing some variables. For example:
{{block.type}}-{{block.id}}-label-{{element.id}}
I want it to just parse the block, and that is why I am giving it the following JSON:
{ block: { type: 'news', id: 23 } }
The end result should be
news-23-label-{{element.id}}
but instead it is
news-23-label-
How should I make it not parse a part of the code? I'm new in Mustache JS and I could not find this in the documentation (comments I understood, if and foreach I understood, but I could not find this).