Tag for using amp-mustache
The amp-mustache component alone cannot be used in TJML. For it to work correctly, pick the m-template where necessary.
To insert dynamic elements, use double square brackets
[[]]instead of curly brackets
{{}}
Example
<m-template>
<div class="comment_item_author">
<span>[[author]]</span> [[time]]
</div>
<div class="comment_item_txt">
[[comment]]
</div>
</m-template>