diff --git a/scipost_django/pins/templates/pins/_hx_note_item.html b/scipost_django/pins/templates/pins/_hx_note_item.html index 62f60773cf7a22059f6e3d716428ab6365d86a3e..66dfac85a5bcdba1d3ac48a4563cab03daef7e8e 100644 --- a/scipost_django/pins/templates/pins/_hx_note_item.html +++ b/scipost_django/pins/templates/pins/_hx_note_item.html @@ -1,3 +1,5 @@ +{% load automarkup %} + <div class="my-1"> <div class="d-flex justify-content-between"> <span class="fw-bold text-truncate overflow-hidden">{{ note.title }}</span> @@ -11,5 +13,5 @@ hx-delete="{% url "pins:_hx_note_delete" note.id %}">{% include "bi/trash-fill.html" %}</span> </span> </div> - <div>{{ note.description }}</div> + <div>{% automarkup note.description %}</div> </div>