0

我正在使用grunt-html-build插件来制作带有模板的静态站点。我想知道是否可以将自定义参数对象传递给构建函数grunt-html-build,如下所示:

    <!-- build:section layout.head(customSettings) -->
    <!-- /build -->

在模板文件中有,像这样:

<title>customSettings.title</title>
<meta property="og:title" content="customSettings.fbTitle" />
4

1 回答 1

1

改用grunt-bake插件,它有一个Inline Section 语句 ,允许传递自定义参数对象,示例配置是

您要通过以下方式包含其他内容的 HTML 文件grunt-bake

<html>
  <body>
    <!--(bake includes/file.html _section="home")-->
  </body>
</html>

file.html文件_

<h1>{{title}}</h1>
<p>{{content}}</p>

包含有关属性中提到的对象信息的JSONhome文件_section

{
  "home": {
    "title": "Home",
    "content": "This is home"
  }
}

最后是grunt-bake任务的配置

grunt.initConfig({
  bake: {
    build: {
        options: {
            content: "content.json"
        },
        files: {
            "baked.html": "filetobake.html"
        }
    }
  }
})
于 2015-07-01T12:27:05.427 回答