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

github.com/shaform/hugo-theme-den.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaform <shaform@gmail.com>2019-01-16 01:23:37 +0300
committerShaform <shaform@gmail.com>2019-01-16 01:24:08 +0300
commit1142f4302f11a53c14f4ad5b7798203c2db09b48 (patch)
tree24e021dabcd0e731cb90dfbcb8d29705e22732fb
parent05afa049f46a0d2539227fef5d5b6ac5066b771e (diff)
allow markdown in author description
-rw-r--r--layouts/partials/author_card.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/author_card.html b/layouts/partials/author_card.html
index dc91012..b527ca3 100644
--- a/layouts/partials/author_card.html
+++ b/layouts/partials/author_card.html
@@ -17,7 +17,7 @@
<div class="author-content">
<p class="author-title">{{ i18n "author" }}</p>
<p class="author-name">{{ $author_name }}</p>
- <p class="author-desc">{{ $author_desc }}</p>
+ <p class="author-desc">{{ $author_desc | markdownify }}</p>
</div>
</div>
</div>