Files
hugo/layouts/_partials/docs/functions-signatures.html
T
2025-04-10 18:00:06 +02:00

13 lines
414 B
HTML

{{- with .Params.functions_and_methods.signatures }}
<p class="font-bold text-dark dark:text-light">Syntax</p>
{{- range . }}
{{- $signature := . }}
{{- if $.Params.function.returnType }}
{{- $signature = printf "%s ⟼ %s" . $.Params.function.returnType }}
{{- end }}
<div class="font-sm font-mono ml-3 sm:ml-6 mt-0 sm:mt-1">
{{- $signature -}}
</div>
{{- end }}
{{- end -}}