1
0
Fork 0
hugo/docs/content/en/functions/go-template/break.md

533 B

title description categories keywords params
break Used with the range statement, stops the innermost iteration and bypasses all remaining iterations.
functions_and_methods
aliases returnType signatures
break

This template code:

{{ $s := slice "foo" "bar" "baz" }}
{{ range $s }}
  {{ if eq . "bar" }}
    {{ break }}
  {{ end }}
  <p>{{ . }}</p>
{{ end }}

Is rendered to:

<p>foo</p>

{{% include "/_common/functions/go-template/text-template.md" %}}