From 1e8b5df293bf8e56334cbdf2b3d164ed681592db Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Tue, 1 Aug 2023 23:29:35 +0800 Subject: [PATCH] :art: Improve importing for markdown syntax `#Tag` Fix https://github.com/siyuan-note/siyuan/issues/8882 --- kernel/model/import.go | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/model/import.go b/kernel/model/import.go index 7e2d363d3..2b1cb866a 100644 --- a/kernel/model/import.go +++ b/kernel/model/import.go @@ -1063,6 +1063,7 @@ func buildBlockRefInText() { } t := parse.Inline("", n.Tokens, lute.ParseOptions) // 使用行级解析 + parse.NestedInlines2FlattedSpans(t) var children []*ast.Node for c := t.Root.FirstChild.FirstChild; nil != c; c = c.Next { children = append(children, c)