diff options
author | Matt Arnold | 2025-04-09 15:24:29 -0400 |
---|---|---|
committer | Matt Arnold | 2025-04-09 15:24:29 -0400 |
commit | d1745a9c1e46d43af005ac966cf4170192b76f97 (patch) | |
tree | 7de2e583ce0729915ac33dd177099c29ef5d432d /templates/post.html | |
parent | d6b7302b791b95b69dd2334e1119e697bd58cab3 (diff) |
Supercommit
Diffstat (limited to 'templates/post.html')
-rw-r--r-- | templates/post.html | 4 |
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 %} |