ExecuteAsTemplate

ExecuteAsTemplate

https://gohugo.io/hugo-pipes/resource-from-template/

​ 从模板创建资源。

语法

resources.ExecuteAsTemplate TARGET_PATH CONTEXT RESOURCE

用法

​ 为了在包含 Go 模板的一个asset 文件上使用 Hugo Pipes 函数,必须使用 resources.ExecuteAsTemplate 函数。

​ 该函数需要三个参数:创建资源的目标路径、模板上下文和资源对象。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
// assets/sass/template.scss
$backgroundColor: {{ .Param "backgroundColor" }};
$textColor: {{ .Param "textColor" }};
body{
  background-color:$backgroundColor;
  color: $textColor;
}
// [...]
{{ $sassTemplate := resources.Get "sass/template.scss" }}
{{ $style := $sassTemplate | resources.ExecuteAsTemplate "main.scss" . | resources.ToCSS }}

另请参阅

最后修改 May 22, 2023: 第一次提交 (9f24e27)