We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 118c084 commit 9c0c7aeCopy full SHA for 9c0c7ae
themes/hextra/layouts/docs/list.html
@@ -8,8 +8,9 @@
8
<div class="content">
9
<h1>{{ .Title }}</h1>
10
11
+ <p class="lead italic">{{ .Params.Lead | markdownify }}</p>
12
+
13
{{ .Content }}
- <p class="lead italic">{{ .Params.Lead }}</p>
14
15
<div class="hextra-cards hx-mt-4 hx-gap-4 hx-grid not-prose">
16
{{ range .Pages }}
@@ -20,9 +21,9 @@ <h1>{{ .Title }}</h1>
20
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 }}
- {{ .Params.lead | truncate 200 }}
24
+ {{ .Params.lead | truncate 200 | markdownify }}
25
{{ else }}
- {{ .Summary | truncate 200 }}
26
+ {{ .Summary | truncate 200 | markdownify }}
27
{{ end }}
28
</div>
29
</a>
0 commit comments