@jdists/mustache
v0.0.3
Published
mustache as jdists processor
Downloads
3
Readme
@jdists/mustache
mustache as jdists processor
Example
<!--data>
kids:
- name: Jimmy
age: '12'
- name: Sally
age: '4'
</data-->
<!--jdists encoding="mustache" data="?data"-->
<ul>
{{#kids}}
<li>{{name}} is {{age}}</li>
{{/kids}}
</ul>
<!--/jdists-->
<!--mustache data="?data"-->
<ul>
{{#kids}}
<li>{{name}} is {{age}}</li>
{{/kids}}
</ul>
<!--/mustache-->
License
MIT © zswang