🎨 Escape character \ were not handled correctly when importing Markdown https://github.com/siyuan-note/siyuan/issues/7867

This commit is contained in:
Liang Ding 2023-04-03 18:15:17 +08:00
parent 7c648bb28c
commit 048b2e838c
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
3 changed files with 4 additions and 13 deletions

View file

@ -727,7 +727,7 @@ func parseStdMd(markdown []byte) (ret *parse.Tree) {
}
genTreeID(ret)
imgHtmlBlock2InlineImg(ret)
parse.NestedInlines2FlattedSpans(ret)
parse.NestedInlines2FlattedSpansHybrid(ret)
return
}