enable using .Inner for complex text
This commit is contained in:
parent
6ce969bdcd
commit
0724988e4d
|
@ -1,4 +1,12 @@
|
||||||
<div class="alert alert-warning d-flex" role="alert">
|
<div class="alert alert-warning d-flex" role="alert">
|
||||||
<div class="flex-shrink-1 alert-icon">{{ with .Get "icon" }}{{.}} {{ end }}</div>
|
<div class="flex-shrink-1 alert-icon">{{ with .Get "icon" }}{{.}} {{ end }}</div>
|
||||||
<div class="w-100">{{ with .Get "text" }}{{ . | safeHTML }}{{ end }}</div>
|
{{ with .Get "text"}}
|
||||||
|
<div class="w-100">{{ . }} </div>
|
||||||
|
{{ else }}
|
||||||
|
{{ with .Inner}}
|
||||||
|
<div class="w-100"> {{ . | markdownify}}</div>
|
||||||
|
{{ else }}
|
||||||
|
{{ errorf "No valid text variable or Inner content given"}}
|
||||||
|
{{ end }}
|
||||||
|
{{ end}}
|
||||||
</div>
|
</div>
|
Loading…
Reference in New Issue