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

github.com/zwbetz-gh/cupper-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanya Bouman <tanyabouman@gmail.com>2022-08-15 22:11:21 +0300
committerGitHub <noreply@github.com>2022-08-15 22:11:21 +0300
commita3a0104a3e9e48f280c2e9cedca2d1c28880cd27 (patch)
tree35794aade441d5ed94b8721da1bcbca5b4a221f9 /layouts
parentd5ffe2f36953ae9183c3c7e5c6b4bc83ef1961a9 (diff)
blockquote: apply markdown to author (#75)
Signed-off-by: Tanya Bouman <tanyabouman@gmail.com> Signed-off-by: Tanya Bouman <tanyabouman@gmail.com>
Diffstat (limited to 'layouts')
-rw-r--r--layouts/shortcodes/blockquote.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/shortcodes/blockquote.html b/layouts/shortcodes/blockquote.html
index 7bc9551..9561521 100644
--- a/layouts/shortcodes/blockquote.html
+++ b/layouts/shortcodes/blockquote.html
@@ -5,7 +5,7 @@
{{ $quote | markdownify }}
{{ with (.Get "author") }}
<br>
- <span class="author">&mdash; {{ . }}</span>
+ <span class="author">&mdash; {{ . | markdownify }}</span>
{{ end }}
</p>
</blockquote> \ No newline at end of file