diff --git a/templates/blog/content.html b/templates/blog/content.html
index ec82a28..bbb4c7b 100644
--- a/templates/blog/content.html
+++ b/templates/blog/content.html
@@ -38,7 +38,7 @@
{% cache 86400 'post_summary' post.id %}
- {{ post.summary|default(post.content, true)|markdown|reference|str|safe }}
+ {{ post.summary|default(post.content, true)|markdown(lazy_load=True)|reference|str|safe }}
{% endcache %}
\ No newline at end of file
diff --git a/templates/chat/message.html b/templates/chat/message.html
index e5fc100..831c4f9 100644
--- a/templates/chat/message.html
+++ b/templates/chat/message.html
@@ -21,7 +21,7 @@
{% endif %}
- {{message.body|markdown|reference|str|safe }}
+ {{message.body|markdown(lazy_load=True)|reference|str|safe }}
diff --git a/templates/comments/feed.html b/templates/comments/feed.html
index db4d079..dcb813a 100644
--- a/templates/comments/feed.html
+++ b/templates/comments/feed.html
@@ -13,6 +13,6 @@
{% endif %}
{% endwith %}
- {{ comment.body |markdown|reference|str|safe }}
+ {{ comment.body|markdown(lazy_load=True)|reference|str|safe }}
\ No newline at end of file
diff --git a/templates/comments/list.html b/templates/comments/list.html
index eaf1f6b..dcffd48 100644
--- a/templates/comments/list.html
+++ b/templates/comments/list.html
@@ -93,7 +93,7 @@
- {{ node.body|markdown|reference|str|safe }}
+ {{ node.body|markdown(lazy_load=True)|reference|str|safe }}
{% if node.score <= vote_hide_threshold %}
diff --git a/templates/problem/feed.html b/templates/problem/feed.html
index 73c2edf..4429794 100644
--- a/templates/problem/feed.html
+++ b/templates/problem/feed.html
@@ -54,7 +54,7 @@
{% endif %}
{% cache 86400 'problem_html' problem.id MATH_ENGINE LANGUAGE_CODE %}
- {{ problem.description|markdown|reference|str|safe }}
+ {{ problem.description|markdown(lazy_load=True)|reference|str|safe }}
{% endcache %}
{% if problem.pdf_description %}
- {{ ticket.messages.last().body |markdown|reference|str|safe }}
+ {{ ticket.messages.last().body|markdown(lazy_load=True)|reference|str|safe }}
\ No newline at end of file