Use Hugo's partial-returning where possible

Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
This commit is contained in:
2026-05-18 21:15:19 -07:00
parent 2032e1cdc2
commit 19550ef1b2
12 changed files with 46 additions and 55 deletions

View File

@@ -1,9 +1,9 @@
{{ if eq .from .to }}
{{ .scratch.Set "comment" (printf ", line %d" .from) }}
{{ else }}
{{ if eq .from 0 }}
{{ .scratch.Set "comment" (printf ", around line %d" .to) }}
{{ else }}
{{ .scratch.Set "comment" (printf ", lines %d through %d" .from .to) }}
{{ end }}
{{ end }}
{{- $comment := "" -}}
{{- if eq .from .to -}}
{{- $comment = printf ", line %d" .from -}}
{{- else if eq .from 0 -}}
{{- $comment = printf ", around line %d" .to -}}
{{- else -}}
{{- $comment = printf ", lines %d through %d" .from .to -}}
{{- end -}}
{{- return $comment -}}