kubenix/docs/layouts/partials/highlight.html
2022-08-28 15:22:43 -04:00

10 lines
No EOL
308 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 = jsonify $text }}
{{ end }}
<pre class="highlight"><code>{{ $text }}</code></pre>