From 773e055e8ea4ba8819cb1ff185d1b18f34989265 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Mon, 18 May 2020 11:52:32 -0400 Subject: [PATCH] Strip
and tags from rich-text email reply citations --- emacs/init.org | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/emacs/init.org b/emacs/init.org index 260bca4..5b83dce 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -4074,7 +4074,9 @@ Support sending rich-text emails via Markdown: (unless (= 0 (call-process-region (point-min) (point-max) "pandoc" t t nil - "--quiet" "-f" "html" "-t" "gfm")) + "--quiet" + "-f" "html-native_divs-native_spans" + "-t" "gfm")) (error "HTML to mardkwon conversion failed: %s" (buffer-substring (point-min) (point-max)))) (buffer-substring (point-min) (point-max))))