Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/utils/get-summary.html')
-rw-r--r--layouts/partials/utils/get-summary.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/utils/get-summary.html b/layouts/partials/utils/get-summary.html
index 311acdf..82a43ed 100644
--- a/layouts/partials/utils/get-summary.html
+++ b/layouts/partials/utils/get-summary.html
@@ -2,7 +2,7 @@
<a href="{{ .Permalink }}" class="font-bold text-xl hover:text-eureka">{{ .LinkTitle }}</a>
</div>
<div class="content">
- {{ .Summary | plainify }}
+ {{ .Summary | plainify | htmlUnescape }}
</div>
{{ if eq .Type "docs" }}
<div class="px-6 pt-4">
@@ -15,7 +15,7 @@
<a href="{{ .Permalink }}" class="font-semibold hover:text-eureka">{{ .LinkTitle }}</a>
</div>
<div class="">
- {{- .Summary | plainify -}}
+ {{- .Summary | plainify | htmlUnescape -}}
</div>
</div>
{{ end }}