kubenix/docs/layouts/partials/highlight.html

10 lines
No EOL
316 B
HTML

{{ $text := . }}
{{/* if text is a multiline string add nix's double single-quotes */}}
{{ if in $text "\n" }}
{{ $text = print "''\n " (strings.TrimSuffix " " (replace $text "\n" "\n ") ) "''" }}
{{ else }}
{{ $text = $text | jsonify (dict "indent" " ") }}
{{ end }}
{{- transform.Highlight $text "nix" }}