From c68ead85c01b7cd0fa119b15f1cf2854dffddb83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Sat, 9 Aug 2025 12:48:04 +0300 Subject: [PATCH] add line breaks around [quote] in reply button reply markup --- app/templates/common/macros.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/common/macros.html b/app/templates/common/macros.html index 6b1b302..dd0ef63 100644 --- a/app/templates/common/macros.html +++ b/app/templates/common/macros.html @@ -143,7 +143,7 @@ {% if show_reply %} {% set qtext = "[url=%s]%s said:[/url]" | format(post_permalink, post['username']) %} - {% set reply_text = "%s\n[quote]%s[/quote]\n" | format(qtext, post['original_markup']) %} + {% set reply_text = "%s\n[quote]\n%s\n[/quote]\n" | format(qtext, post['original_markup']) %} {% endif %}