Files
vanilla-hugo/layouts/_partials/linerangestr.html
2026-05-18 21:15:19 -07:00

10 lines
276 B
HTML

{{- $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 -}}