const template = require('art-template');
//绝对路径 模板中显示的数据
const path = require('path');
const views = path.join(__dirname, '02.art');
const html = template(views, {name: '张三',age: 20,/* content: '<h1>我是歌谣</h1>' */
});
console.log(html);
02.art
{{if age>18}}
年龄大于18
{{else if age<15}}
年龄小于15
{{else}}
不符合要求
{{/if}}<%if(age>18) {%>年龄大于18<%
}
%>
运行结果