From 44e22f52b366f6dcb89bd856e3a68cf8d1cd1124 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 1 Sep 2022 09:31:27 +0200 Subject: [PATCH] Do not set a title --- .config/mutt/markdown2html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.config/mutt/markdown2html b/.config/mutt/markdown2html index 327dff2..8a67a13 100755 --- a/.config/mutt/markdown2html +++ b/.config/mutt/markdown2html @@ -304,15 +304,14 @@ def convert_markdown_to_html(mdwn): body = _preprocess_markdown(body) body = _identify_quotes_for_later(body) html = _convert_with_pandoc(body, standalone=True, selfcontained=True, - title="Body") - html = html.replace('Body\n','') + title=None) html = _reformat_quotes(html) if sig: sig = _preprocess_signature(sig) sig = _preprocess_markdown(sig) sig = _convert_with_pandoc(sig, standalone=False, selfcontained=False, - title="Signature") + title=None) sig = SIGNATURE_HTML.format(sig=sig) eob = html.find('') html = f'{html[:eob]}{sig}\n{html[eob:]}' -- 2.39.2