A parser plugin for fis to precompile handlebars v4.x template.
npm install -g fis-parser-handlebars-4.x
// fis-conf.js
fis.config.set('modules.parser.handlebars', 'handlebars-4.x');
fis.config.set('project.fileType.text', 'handlebars');
fis.config.set('roadmap.ext.handlebars', 'js');
创建foo.handlebars的模板文件,其中的内容是:
<div class="entry">
<h1>{{title}}</h1>
<div class="body">
{{body}}
</div>
</div>
创建foo.js的js文件,内容是:
var tpl = __inline('foo.handlebars');
var context = {title: "My New Post", body: "This is my first post!"};
var html = console.log(tpl(context));
console.log(html);
在页面上引入handlebars的 runtime版本 作为运行时模板引擎框架。