change format=flowed newline behaviour
This commit is contained in:
@@ -787,7 +787,7 @@ MailParser.prototype._handleTextLine = function(line){
|
|||||||
if(this._currentNode.meta.textDelSp == "yes"){
|
if(this._currentNode.meta.textDelSp == "yes"){
|
||||||
this._currentNode.content = this._currentNode.content.replace(/[ ]+$/,"");
|
this._currentNode.content = this._currentNode.content.replace(/[ ]+$/,"");
|
||||||
}
|
}
|
||||||
this._currentNode.content += line;
|
this._currentNode.content += "\n" + line;
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
this._currentNode.content += "\n"+line;
|
this._currentNode.content += "\n"+line;
|
||||||
|
Reference in New Issue
Block a user