diff --git a/scipost/templates/scipost/_remark_li.html b/scipost/templates/scipost/_remark_li.html
index bf4fc637bfa4e178de1615f9d492a0681fd8cc4f..d8d0494ba6437c62fcf4366490db0f4a5a1a7375 100644
--- a/scipost/templates/scipost/_remark_li.html
+++ b/scipost/templates/scipost/_remark_li.html
@@ -2,5 +2,9 @@
     <div class="font-weight-bold">
         {{remark.contributor.user.first_name}} {{remark.contributor.user.last_name}} <small class="text-muted">on {{remark.date}}</small>
     </div>
+    {% if remark.contributor.user.is_superuser %}
+    <div>{{remark.remark|safe|linebreaks}}</div>
+    {% else %}
     <div>{{remark.remark|linebreaks}}</div>
+    {% endif %}
 </li>