{{/* prettier-ignore-start */ -}} {{- /* Renders the child sections of the given top-level section, listing each child's immediate descendants. @param {string} section The top-level section to render. @example {{< quick-reference section="functions" >}} */ -}} {{/* prettier-ignore-end */ -}} {{ $section := "" }} {{ with .Get "section" }} {{ $section = . }} {{ else }} {{ errorf "The %q shortcodes requires a 'section' parameter. See %s" .Name .Position }} {{ end }} {{ with site.GetPage $section }} {{ range .Sections }}

{{ .LinkTitle }}

{{ .Content }} {{ with .Pages }}
{{ range . }} {{ $aliases := "" }} {{ if eq .Section "functions" }} {{ with .Params.functions_and_methods.aliases }} {{ $aliases = delimit . " or " }} {{ end }} {{ end }}
{{ .LinkTitle }} {{ with $aliases }}({{ . }}){{ end }}
{{ .Description }}
{{ end }}
{{ end }} {{ end }} {{ else }} {{ errorf "The %q shortcodes was unable to find the %q section. See %s" .Name $section .Position }} {{ end }}