commit 2b14b3d4e5eab53aa45647490bb797b642a82a59
parent 9e657da94add5061fdea5d510fe013f58fd64742
Author: Radek KozieĊ <radoslaw.koziel@gmail.com>
Date: Sat, 21 Jan 2023 23:12:58 +0100
Merge pull request #417 from T2hhbmEK/fix/summary
fix summary not showing
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/_default/index.html b/layouts/_default/index.html
@@ -49,7 +49,7 @@
{{ else if .Description }}
{{ .Description | markdownify }}
{{ else }}
- {{ .Summary | markdownify }}
+ {{ .Summary }}
{{ end }}
</div>
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
@@ -39,7 +39,7 @@
{{ else if .Description }}
{{ .Description | markdownify }}
{{ else }}
- {{ .Summary | markdownify }}
+ {{ .Summary }}
{{ end }}
</div>