{{- $type := .Get "type" | default "note" -}} {{- $title := .Get "title" | default (title $type) -}} {{- $icon := "" -}} {{- if eq $type "note" -}} {{- $icon = "📝" -}} {{- else if eq $type "tip" -}} {{- $icon = "💡" -}} {{- else if eq $type "info" -}} {{- $icon = "â„šī¸" -}} {{- else if eq $type "warning" -}} {{- $icon = "âš ī¸" -}} {{- else if eq $type "danger" -}} {{- $icon = "🚨" -}} {{- else if eq $type "success" -}} {{- $icon = "✅" -}} {{- else if eq $type "question" -}} {{- $icon = "❓" -}} {{- else if eq $type "quote" -}} {{- $icon = "đŸ’Ŧ" -}} {{- else if eq $type "example" -}} {{- $icon = "📋" -}} {{- else if eq $type "bug" -}} {{- $icon = "🐛" -}} {{- else -}} {{- $icon = "📌" -}} {{- end -}}
{{ $icon }} {{ $title }}
{{ .Inner | markdownify }}