我正在使用grunt-html-build插件制作带模板的静态网站。
我想知道是否可以将自定义参数对象传递给grunt-html-build
的 build 函数,如下所示:
<!-- build:section layout.head(customSettings) -->
<!-- /build -->
拥有模板文件,如下所示:
<title>customSettings.title</title>
<meta property="og:title" content="customSettings.fbTitle" />
答案 0 :(得分:1)
使用grunt-bake插件,它有一个内联部分语句 允许传递自定义参数对象,样本配置将是
要通过myParam
grunt-bake
<html>
<body>
<!--(bake includes/file.html _section="home")-->
</body>
</html>
文件
file.html
JSON文件,其中包含<h1>{{title}}</h1>
<p>{{content}}</p>
属性
home
对象的相关信息
_section
最后是{
"home": {
"title": "Home",
"content": "This is home"
}
}
任务的配置
grunt-bake