template.js的fis编译插件——一款javascript模板引擎。
$ npm install -g fis-parser-template
配置参数同template.js参数一样,其中global参数代表template.js的全局名称。
fis2
//设置编译器
fis.config.merge({
modules: {
parser: {
tmpl: 'template' // tmpl后缀的使用fis-parser-template处理
}
}
});
//自定义参数
fis.config.merge({
settings: {
parser: {
template: {
sTag: '<%',
eTag: '%>',
global: 'template'
}
}
}
});
fis3
fis.match('**.tmpl', {
parser: fis.plugin('template', {
sTag: '<%',
eTag: '%>',
global: 'template'
}),
isJsLike: true,
release : false
});
yanhaijing