docs-v2/layouts/shortcodes/hide-in.html

7 lines
414 B
HTML

{{- $productPathData := split .Page.RelPermalink "/" -}}
{{- $productVersion := index $productPathData 2 -}}
{{- $defaultHideInString := "v2,cloud,cloud-serverless,cloud-dedicated,clustered,core,enterprise" -}}
{{- $hideInString := .Get 0 | default $defaultHideInString }}
{{- $hideInList := split $hideInString "," -}}
{{- $hide := in $hideInList $productVersion -}}
{{ if $hide }}{{ else }}{{ .Inner }}{{ end }}