0.0.3 • Published 6 years ago

@jdists/mustache v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

@jdists/mustache

mustache as jdists processor

NPM version Build Status Coverage Status

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