Files
web/themes/minimal-black/layouts/_default/_markup/render-blockquote.html
2026-03-23 18:35:59 +01:00

11 lines
272 B
HTML

{{- /* Check if this is a GitHub-style alert */ -}}
{{- if eq .Type "alert" -}}
<div class="md-alert md-alert-{{ .AlertType }}">
{{ .Text | safeHTML }}
</div>
{{- else -}}
<blockquote class="md-blockquote">
{{ .Text | safeHTML }}
</blockquote>
{{- end -}}