xi-conversations

Minimal clone of thunderbird conversations
git clone https://git.ce9e.org/xi-conversations.git

commit
cbbac7d2ddfde6cc9f54b38669fe8c00fed69930
parent
34ecc659a17b47b3fe4829cd472a2bf4fda1c41f
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-12-12 14:52
link relevant standards for mail bodies

Diffstat

M src/js/body.js 4 ++++

1 files changed, 4 insertions, 0 deletions


diff --git a/src/js/body.js b/src/js/body.js

@@ -57,6 +57,10 @@ var renderQuotes = function(parent, lines, nested) {
   57    57 };
   58    58 
   59    59 var renderBody = function(parent, text) {
   -1    60 	// https://www.rfc-editor.org/rfc/rfc3676
   -1    61 	// https://en.wikipedia.org/wiki/Posting_style
   -1    62 	// http://www.asciiribbon.org/
   -1    63 
   60    64 	var [body, ...sig] = text.split('\n-- \n');
   61    65 	renderQuotes(parent, body.split('\n'));
   62    66