Back to Vector

Examples

website/layouts/shortcodes/vrl/examples.html

0.55.0442 B
Original Source

{{ $categories := site.Data.docs.remap.function_categories }} {{ range $categories }} {{ $category := . }} {{ $funcs := slice }} {{ range $k, $func := site.Data.docs.remap.functions }} {{ if eq $func.category $category }} {{ $funcs = $funcs | append $func }} {{ end }} {{ end }} {{ $text := printf "%s examples" . }} {{ partial "heading.html" (dict "text" $text "level" 2) }} {{ partial "data.html" (dict "vrl_examples" $funcs) }} {{ end }}