mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 17:12:51 +00:00
9 lines
261 B
Markdown
9 lines
261 B
Markdown
{{$file := .Get "file"}}
|
|
{{- if eq (.Get "markdown") "true" -}}
|
|
{{- $file | readFile | markdownify -}}
|
|
{{- else if (.Get "highlight") -}}
|
|
{{- highlight ($file | readFile) (.Get "highlight") "" -}}
|
|
{{- else -}}
|
|
{{ $file | readFile | safeHTML }}
|
|
{{- end -}}
|