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

github.com/chipzoller/hugo-clarity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Boothe <git@rootwork.org>2022-05-17 01:27:44 +0300
committerIvan Boothe <git@rootwork.org>2022-05-17 01:27:44 +0300
commit5cbb7620d635267e109dc607f694e07129da45bd (patch)
tree19b3272143ce91329ed8e0c06afbead5cf7c72fb
parentd09449bf63f9109c287d8fcd13bdabc87f3ae234 (diff)
add markdownify to titles in lists
Signed-off-by: Ivan Boothe <git@rootwork.org>
-rw-r--r--layouts/partials/excerpt.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/excerpt.html b/layouts/partials/excerpt.html
index 246276a..ba94336 100644
--- a/layouts/partials/excerpt.html
+++ b/layouts/partials/excerpt.html
@@ -2,7 +2,7 @@
<div class="excerpt">
<div class="excerpt_header">
<h3 class="post_link">
- <a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a>
+ <a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title | markdownify }}</a>
</h3>
{{ partial "post-meta" . }}
</div>