Skip to content

Commit 61d3d20

Browse files
committed
templates: Fix handling of multiple defers in the same template
Fixes #13236
1 parent b13d0a6 commit 61d3d20

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

‎hugolib/hugo_sites_build.go

+1
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,7 @@ func (s *Site) executeDeferredTemplates(de *deps.DeferredExecutions) error {
508508
}
509509

510510
content = append(content[:low], append([]byte(deferred.Result), content[high:]...)...)
511+
forward = len(deferred.Result)
511512
changed = true
512513

513514
return nil

‎tpl/templates/defer_integration_test.go

+27
Original file line numberDiff line numberDiff line change
@@ -220,3 +220,30 @@ Home
220220
b.Assert(err, qt.Not(qt.IsNil))
221221
b.Assert(err.Error(), qt.Contains, "resources.PostProcess cannot be used in a deferred template")
222222
}
223+
224+
// Issue #13236.
225+
func TestDeferMultipleInSameTemplate(t *testing.T) {
226+
t.Parallel()
227+
228+
files := `
229+
-- hugo.toml --
230+
-- layouts/index.html --
231+
Home.
232+
...
233+
{{ with (templates.Defer (dict "data" (dict "a" "b") )) }}
234+
Defer 1
235+
{{ end }}
236+
...
237+
{{ with (templates.Defer (dict "data" (dict "a" "c") )) }}
238+
Defer 2
239+
{{ end }}
240+
{{ with (templates.Defer (dict "data" (dict "a" "d") )) }}
241+
Defer 3
242+
{{ end }}{{ with (templates.Defer (dict "data" (dict "a" "d") )) }}{{ end }}
243+
End.
244+
`
245+
246+
b := hugolib.Test(t, files)
247+
248+
b.AssertFileContent("public/index.html", "Home.", "Defer 1", "Defer 2", "Defer 3", "End.")
249+
}

0 commit comments

Comments
 (0)