diff --git a/src/news/templates/news_detail.html b/src/news/templates/news_detail.html index 676eb89b..3f800508 100644 --- a/src/news/templates/news_detail.html +++ b/src/news/templates/news_detail.html @@ -14,5 +14,5 @@ {% endif %}

{{ news_item.title }} {{ news_item.published_at|date:"Y-m-d" }}

- {{ news_item.content|trustedcommonmark|urlize }} + {{ news_item.content|trustedcommonmark }} {% endblock %} diff --git a/src/news/templates/news_index.html b/src/news/templates/news_index.html index 98ca8a02..382af7c0 100644 --- a/src/news/templates/news_index.html +++ b/src/news/templates/news_index.html @@ -20,7 +20,7 @@ News | {{ block.super }}

{{ item.title }} {{ item.published_at|date:"Y-m-d" }}

- {{ item.content|trustedcommonmark|urlize }} + {{ item.content|trustedcommonmark }} {% if not forloop.last %}
{% endif %}