From e36d08675336bfcdfea3a997230dcea9ac2c2832 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 29 Mar 2023 11:59:20 +0200 Subject: [PATCH] fix signature format --- .config/mutt/markdown2html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.config/mutt/markdown2html b/.config/mutt/markdown2html index a3c0f39..3762d5f 100755 --- a/.config/mutt/markdown2html +++ b/.config/mutt/markdown2html @@ -105,7 +105,10 @@ if os.path.exists(STYLESHEET): DEFAULT_CSS += open(STYLESHEET).read() SIGNATURE_HTML = \ - '
-- {sig}
' +""" +
--
+{sig}
+""" def _preprocess_signature(sig): -- 2.39.2