From 79136dc9cd464d32ff37e90df09b97db64575f99 Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Sun, 12 Jul 2026 12:55:45 +0000
Subject: [PATCH] chore: fix remove plainify
---
layouts/index.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/index.html b/layouts/index.html
index 6aedee2..8ef148c 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -55,9 +55,9 @@
<h3><a href="{{ .RelPermalink }}">{{ upper .Title }}</a></h3>
{{ end }}
{{ if .Site.Params.fullPostContent }}
- <p>{{ .Content | safeHTML | plainify }}</p>
+ <p>{{ .Content | safeHTML }}</p>
{{ else }}
- <p>{{ .Summary | safeHTML | plainify }}</p>
+ <p>{{ .Summary | safeHTML }}</p>
{{ end }}
<!-- add read more -->
{{- if and (.Truncated) (.Site.Params.readMore) -}}
--
Gitblit v1.10.0