From a88257e90beaaebbf7ebaca57cc871fceb93fda9 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Tue, 27 May 2025 19:00:15 -0400 Subject: chore: bump axum and askama Fix breaking changes in markdown and templating --- templates/about/blurb.html.j2 | 4 ++-- templates/post.html.j2 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'templates') diff --git a/templates/about/blurb.html.j2 b/templates/about/blurb.html.j2 index 4389d47..a5e91d3 100644 --- a/templates/about/blurb.html.j2 +++ b/templates/about/blurb.html.j2 @@ -1,3 +1,3 @@
- {{ tutor.get_blurb()|markdown }} -
+ {{ tutor.get_blurb() | safe }} + \ No newline at end of file diff --git a/templates/post.html.j2 b/templates/post.html.j2 index e1c447a..2d70ebc 100644 --- a/templates/post.html.j2 +++ b/templates/post.html.j2 @@ -18,7 +18,7 @@
- {{ post.get_article()|markdown }} + {{ post.get_article() | safe }}
{% endblock %} \ No newline at end of file -- cgit v1.2.3