From 511e5af574f774aa14b19034f00f3ac5ad987c8b Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 23 Aug 2023 08:28:58 +1200 Subject: [PATCH] buildmimetree.py: support modifying the original markdown source --- .config/neomutt/buildmimetree.py | 36 +++++++++++++++++++------------- 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/.config/neomutt/buildmimetree.py b/.config/neomutt/buildmimetree.py index ad4e988..2dac39c 100755 --- a/.config/neomutt/buildmimetree.py +++ b/.config/neomutt/buildmimetree.py @@ -142,23 +142,25 @@ class Multipart( def convert_markdown_to_html(maildraft, *, extensions=None): draftpath = pathlib.Path(maildraft) - textpart = Part( - "text", "plain", draftpath, "Plain-text version", orig=True - ) - with open(draftpath, "r", encoding="utf-8") as textmarkdown: text = textmarkdown.read() mdwn = markdown.Markdown(extensions=extensions) - html = mdwn.convert(text) - htmlpath = draftpath.with_suffix(".html") - htmlpart = Part("text", "html", htmlpath, "HTML version") + with open(draftpath, "w", encoding="utf-8") as textplain: + textplain.write(text) + textpart = Part( + "text", "plain", draftpath, "Plain-text version", orig=True + ) + + html = mdwn.convert(text) + htmlpath = draftpath.with_suffix(".html") with open( htmlpath, "w", encoding="utf-8", errors="xmlcharrefreplace" ) as texthtml: texthtml.write(html) + htmlpart = Part("text", "html", htmlpath, "HTML version") logopart = Part( "image", @@ -351,17 +353,23 @@ def do_massage( # We've hit a leaf-node, i.e. an alternative or a related part # with actual content. - # If the part is not an original part, i.e. doesn't already - # exist, we must first add it. - if not item.orig: + # Let's add the part + if item.orig: + # The original source already exists in the NeoMutt tree, but + # the underlying file may have been modified, so we need to + # update the encoding, but that's it: + cmds.push("") + else: + # … whereas all other parts need to be added, and they're all + # considered to be temporary and inline: cmds.push(f"{item.path}") cmds.push("") - if item.cid: - cmds.push(f"\\Ca\\Ck{item.cid}") - # If the item (including the original) comes with a - # description, then we might just as well update the NeoMutt + # If the item (including the original) comes with additional + # information, then we might just as well update the NeoMutt # tree now: + if item.cid: + cmds.push(f"\\Ca\\Ck{item.cid}") if item.desc: cmds.push(f"\\Ca\\Ck{item.desc}") -- 2.39.2