summaryrefslogtreecommitdiffstats
path: root/tpl/tplimpl
diff options
context:
space:
mode:
authorOleksandr Redko <Oleksandr_Redko@epam.com>2023-10-04 22:25:43 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-10-05 14:45:55 +0200
commit274852bcf254230fae30bed4883049ec94462e85 (patch)
treea8276d0c666d8fb16ba832d932c77c3458a1824b /tpl/tplimpl
parent37a2d5eb4e99b102ba39616917a4c76cb8a142a7 (diff)
all: Format files with gofmt
Diffstat (limited to 'tpl/tplimpl')
-rw-r--r--tpl/tplimpl/template_ast_transformers.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/tpl/tplimpl/template_ast_transformers.go b/tpl/tplimpl/template_ast_transformers.go
index bc02d93ac..8d5d8d1b3 100644
--- a/tpl/tplimpl/template_ast_transformers.go
+++ b/tpl/tplimpl/template_ast_transformers.go
@@ -213,7 +213,8 @@ func (c *templateContext) hasIdent(idents []string, ident string) bool {
// collectConfig collects and parses any leading template config variable declaration.
// This will be the first PipeNode in the template, and will be a variable declaration
// on the form:
-// {{ $_hugo_config:= `{ "version": 1 }` }}
+//
+// {{ $_hugo_config:= `{ "version": 1 }` }}
func (c *templateContext) collectConfig(n *parse.PipeNode) {
if c.t.typ != templateShortcode {
return