From 5a450b1aeecdc63e7d5df5c31207a232cedbf4d3 Mon Sep 17 00:00:00 2001 From: Alex Murray Date: Wed, 6 Nov 2019 11:34:27 +1030 Subject: [PATCH] Treat text/markdown as plain text for issue #1503 --- lib/mu-msg-part.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/mu-msg-part.c b/lib/mu-msg-part.c index 67045016..bf69301f 100644 --- a/lib/mu-msg-part.c +++ b/lib/mu-msg-part.c @@ -465,6 +465,7 @@ looks_like_text_body_part (GMimeContentType *ctype) const char *subtype; } types[] = { { "text", "plain" }, + { "text", "x-markdown" }, { "text", "x-diff" }, { "text", "x-patch" }, { "application", "x-patch"}