{{ partial "breadcrumb.html" . }}
{{ .Title | markdownify }}
{{ with .Description }}{{ . | markdownify }}
{{ end }} {{ partial "docs/component-under-hero.html" . }}
{{ with $config.alias }}
{{ partial "heading.html" (dict "text" "Alias" "level" 2) }}
This component was previously called the {{ . }}
{{ $kindSingular }}. Make sure to update your
Vector configuration to accommodate the name change:
{{ partial "heading.html" (dict "text" "How it works" "level" 2) }}
{{ end }}
{{ range $k, $v := . }}
{{ partial "heading.html" (dict "text" $v.title "level" 3) }}
{{ with .svg }}
{{ partial "svg.html" (dict "src" .) }}
{{ end }}
{{ end }}
{{ $v.body | markdownify }}
{{ with $v.sub_sections }}
{{ range . }}
{{ partial "heading.html" (dict "text" .title "level" 4) }}
{{ with .svg }}
{{ partial "svg.html" (dict "src" .) }}
{{ end }}
{{ end }}
{{ .body | markdownify }}
{{ end }}