File tree 1 file changed +9
-7
lines changed
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 28
28
{{ $slice := slice }}
29
29
{{/* We range on its item */}}
30
30
{{ range . }}
31
- {{/* As it is a slice, its entries might be "imports" */}}
32
- {{ with partialCached "tnd-netlifycms/private/import" . . }}
33
- {{/* We recursively use self partial to deep parse the result */}}
34
- {{ with partialCached "tnd-netlifycms/private/parse" . . }}
35
- {{/* We add the produced data as an entry to the newly processed slice */}}
36
- {{ $slice = $slice | append . }}
31
+ {{ with . }}
32
+ {{/* As it is a slice, its entries might be "imports" */}}
33
+ {{ with partialCached "tnd-netlifycms/private/import" . . }}
34
+ {{/* We recursively use self partial to deep parse the result */}}
35
+ {{ with partialCached "tnd-netlifycms/private/parse" . . }}
36
+ {{/* We add the produced data as an entry to the newly processed slice */}}
37
+ {{ $slice = $slice | append . }}
38
+ {{ end }}
37
39
{{ end }}
38
40
{{ end }}
39
41
{{ end }}
69
71
{{ $return = . }}
70
72
{{ end }}
71
73
72
- {{ return $return }}
74
+ {{ return $return }}
You can’t perform that action at this time.
0 commit comments