This commit is contained in:
Daniel 2024-11-08 14:29:25 +08:00
parent c5dc86bf8e
commit fb3bc9aa81
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
6 changed files with 8 additions and 5 deletions

View file

@ -1020,6 +1020,7 @@ func parseStdMd(markdown []byte) (ret *parse.Tree, yfmRootID, yfmTitle, yfmUpdat
}
yfmRootID, yfmTitle, yfmUpdated = normalizeTree(ret)
imgHtmlBlock2InlineImg(ret)
parse.TextMarks2Inlines(ret) // 先将 TextMark 转换为 Inlines https://github.com/siyuan-note/siyuan/issues/13056
parse.NestedInlines2FlattedSpansHybrid(ret, false)
return
}