Files
hugo-book/layouts/_markup/render-blockquote.html
2025-08-07 13:18:21 +02:00

9 lines
406 B
HTML

{{- $attributes := .Attributes }}
{{- $class := printf "book-hint %s" ($.AlertType | lower) }}
{{- if isset $attributes "class" }}
{{ $class = printf "%s %s" $class (index $attributes "class") }}
{{ end -}}
{{- $attributes = merge $attributes (dict "class" $class) }}
<blockquote {{ range $key, $value := $attributes }}{{printf "%s='%s'" $key $value | safeHTMLAttr}}{{ end }}>
{{ .Text }}
</blockquote>