From cb90ff0b1da3087d92ee1e6a294fa7727fa5a8be Mon Sep 17 00:00:00 2001 From: Chris Fulljames Date: Fri, 10 Jan 2025 18:05:13 -0500 Subject: [PATCH] Insert line breaks in bio --- templates/profile.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/profile.html b/templates/profile.html index 22c1619..07fae6d 100644 --- a/templates/profile.html +++ b/templates/profile.html @@ -7,7 +7,7 @@

{{ name }}

-
{{ bio|safe }}
+
{{ (bio.replace("\n", "
"))|safe }}
{% if session["userid"] == userid %} -- 2.39.5