🐛 中西文间插入空格影响行级标记符 Fix https://github.com/siyuan-note/siyuan/issues/5308

This commit is contained in:
Liang Ding 2022-06-28 18:56:16 +08:00
parent 38a7d48eac
commit 1d10439bbb
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
6 changed files with 37 additions and 33 deletions

View file

@ -110,7 +110,7 @@ func GetBlockKramdown(id string) (ret string) {
return
}
addBlockIALNodes(tree)
addBlockIALNodes(tree, false)
node := treenode.GetNodeInTree(tree, id)
luteEngine := NewLute()
ret, _ = lute.FormatNodeSync(node, luteEngine.ParseOptions, luteEngine.RenderOptions)