We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf8a4cd commit bccd69eCopy full SHA for bccd69e
themes/hextra/layouts/docs/list.html
@@ -8,7 +8,7 @@
8
<div class="content">
9
<h1>{{ .Title }}</h1>
10
11
- <p class="lead italic">{{ .Params.Lead }}</p>
+ <p class="lead italic">{{ .Params.Lead | markdownify }}</p>
12
13
{{ .Content }}
14
@@ -21,9 +21,9 @@ <h1>{{ .Title }}</h1>
21
</span>
22
<div class="hextra-card-subtitle hx-line-clamp-3 hx-text-sm hx-font-normal hx-text-gray-500 dark:hx-text-gray-400 hx-px-4 hx-mb-4 hx-mt-2">
23
{{ if .Params.lead }}
24
- {{ .Params.lead | truncate 200 }}
+ {{ .Params.lead | truncate 200 | markdownify }}
25
{{ else }}
26
- {{ .Summary | truncate 200 }}
+ {{ .Summary | truncate 200 | markdownify }}
27
{{ end }}
28
</div>
29
</a>
0 commit comments