diff options
Diffstat (limited to 'design/templates/comments/list.html')
-rw-r--r-- | design/templates/comments/list.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/design/templates/comments/list.html b/design/templates/comments/list.html index 378145e..569a60a 100644 --- a/design/templates/comments/list.html +++ b/design/templates/comments/list.html @@ -1,4 +1,5 @@ {% load gravatar_local %} +{% load typogrify_tags %} {% load markdown%} {% load bleach_tags %} {% load nofollow %} @@ -15,7 +16,7 @@ </div> <div class="comment--body"> - {{comment.comment|removetags:"p"|markdown|bleach|nofollow|safe}} + {{comment.comment|removetags:"p"|markdown|bleach|nofollow|safe|smartypants}} </div> </div> {% endfor %} |