set lastNode directly when not decending
parent
793b91be5b
commit
c53708b245
|
@ -192,8 +192,11 @@ function parseHtmlMessage(html, partCreator) {
|
||||||
if (lastNode && lastNode.nodeName === "BLOCKQUOTE") {
|
if (lastNode && lastNode.nodeName === "BLOCKQUOTE") {
|
||||||
parts.push(partCreator.newline());
|
parts.push(partCreator.newline());
|
||||||
}
|
}
|
||||||
lastNode = null;
|
const decend = checkDecendInto(n);
|
||||||
return checkDecendInto(n);
|
// when not decending (like for PRE), onNodeLeave won't be called to set lastNode
|
||||||
|
// so do that here.
|
||||||
|
lastNode = decend ? null : n;
|
||||||
|
return decend;
|
||||||
}
|
}
|
||||||
|
|
||||||
function onNodeLeave(n) {
|
function onNodeLeave(n) {
|
||||||
|
|
Loading…
Reference in New Issue