aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-formatter.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-formatter.c')
-rw-r--r--camel/camel-formatter.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/camel/camel-formatter.c b/camel/camel-formatter.c
index bed3f4fc5a..1bfbbcf0a7 100644
--- a/camel/camel-formatter.c
+++ b/camel/camel-formatter.c
@@ -639,6 +639,8 @@ handle_text_plain (CamelFormatter *formatter, CamelDataWrapper *wrapper)
camel_stream_write_string (formatter->priv->stream,
"\n<!-- text/plain below -->\n");
+ camel_stream_write_string (formatter->priv->stream,
+ "<pre>\n");
if (strcmp (wrapper->mime_type->subtype, "richtext") == 0) {
@@ -688,6 +690,8 @@ handle_text_plain (CamelFormatter *formatter, CamelDataWrapper *wrapper)
camel_stream_write_string (formatter->priv->stream,
"<b>(empty)</b>");
}
+ camel_stream_write_string (formatter->priv->stream,
+ "</pre>\n");
debug ("handle_text_plain: exiting\n");
}