matrix-spec/layouts/partials/alert.html
Kévin Commaille a4306c382a
Do not call markdownify in alert partial
This causes issues for links as the method doesn't have
the right context to resolve them.
The content is already markdownified because of the `%` syntax of the shortcode
that calls it, and it has the right context.

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
2024-11-01 11:29:59 +01:00

21 lines
576 B
HTML

{{/*
Display an alert box of the given type, containing the given content.
Supported types are "warning", "info", and "rationale".
The type determines the colors used in the box and, by default,
the title for the box: WARNING, INFO, RATIONALE.
By passing "omit_title", a caller can suppress the title, and just get
a box using the colors and styles for the given type.
*/}}
{{ $type := .type}}
{{ $content := .content}}
{{ $omit_title := .omit_title }}
<div class="alert {{ $type }} {{ if $omit_title }}omit-title{{end}}" role="alert">
{{ $content }}
</div>