summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/about/blurb.html.j24
-rw-r--r--templates/post.html.j22
2 files changed, 3 insertions, 3 deletions
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 @@
<div id="{{ tutor.get_id() }}">
- {{ tutor.get_blurb()|markdown }}
-</div>
+ {{ tutor.get_blurb() | safe }}
+</div> \ 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 @@
<section>
<article>
- {{ post.get_article()|markdown }}
+ {{ post.get_article() | safe }}
</article>
</section>
{% endblock %} \ No newline at end of file