@jdists/mustache
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

@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

Package Sidebar

Install

npm i @jdists/mustache

Weekly Downloads

1

Version

0.0.3

License

MIT

Last publish

Collaborators

  • zswang