change format=flowed newline behaviour

This commit is contained in:
s2
2017-11-13 15:07:00 +01:00
parent e410a7c7df
commit d8ceaf21f6

View File

@@ -787,7 +787,7 @@ MailParser.prototype._handleTextLine = function(line){
if(this._currentNode.meta.textDelSp == "yes"){
this._currentNode.content = this._currentNode.content.replace(/[ ]+$/,"");
}
this._currentNode.content += line;
this._currentNode.content += "\n" + line;
}
}else{
this._currentNode.content += "\n"+line;