Merge pull request #3274 from matrix-org/bwindels/fixpostcodeblocknewline

Fix newline not being appended to code block while converting message to markdown
pull/21833/head
Bruno Windels 2019-08-05 08:19:42 +00:00 committed by GitHub
commit 98c0232a96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -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) {