summary refs log tree commit diff
path: root/templates/post.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/post.html')
-rw-r--r--templates/post.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/post.html b/templates/post.html
index 5a28b2b..8272d37 100644
--- a/templates/post.html
+++ b/templates/post.html
@@ -3,6 +3,6 @@
 {% block content %}
     <h2>{{ post.title }}</h2>
     <p>{{ post.created_at.strftime('%Y-%m-%d %H:%M') }}</p>
-    <div>{{ post.content }}</div>
+    <div>{{ post.content|markdown|safe }}</div>
     <a href="{{ url_for('index') }}">Back to posts</a>
-{% endblock %}
\ No newline at end of file
+{% endblock %}