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

github.com/blankoworld/hugo_theme_adam_eve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier DOSSMANN <git@dossmann.net>2019-04-24 16:38:28 +0300
committerOlivier DOSSMANN <git@dossmann.net>2019-04-24 16:38:28 +0300
commit831afd2583be3debcfd821885b2601872870d199 (patch)
treef01cdd889e0ceaa6d25293cd9fac5997b91f2371
parent62a85261fbef9883e8403a11a0fdfa1ffbe88dcd (diff)
Fix problems with markdown in "notes"
-rw-r--r--layouts/shortcodes/note.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/shortcodes/note.html b/layouts/shortcodes/note.html
index a59ae77..e5a094a 100644
--- a/layouts/shortcodes/note.html
+++ b/layouts/shortcodes/note.html
@@ -1,3 +1,3 @@
<div class="note{{ with .Get 0 }} {{.}}{{end}}">
- {{.Inner|emojify}}
+ {{.Inner|emojify|markdownify}}
</div>