summaryrefslogtreecommitdiffstats
path: root/layouts/partials/docs/functions-signatures.html
blob: 07c9cb7687b2b2b95d5396d38e5fa0fe12746799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{- with .Params.function.signatures }}
  <h2 class="minor mb1 pt4 primary-color-dark">Syntax</h2>
  {{- range . }}
    {{- $signature := . }}
    {{- if $.Params.function.returnType }}
      {{- $signature = printf "%s ⟼ %s" . $.Params.function.returnType }}
    {{- end }}
    <pre class="f5 mb4 ph3 pv2 bg-light-gray" style="border-left:4px solid #0594CB;">
      {{- $signature -}}
    </pre>
  {{- end }}
{{- end -}}