diff --git a/kernel/model/bookmark.go b/kernel/model/bookmark.go index bc4601db5..29394b422 100644 --- a/kernel/model/bookmark.go +++ b/kernel/model/bookmark.go @@ -166,6 +166,12 @@ func BuildBookmark() (ret *Bookmarks) { blocks := fromSQLBlocks(&sqlBlocks, "", 0) for _, block := range blocks { label := BookmarkLabel(block.IAL["bookmark"]) + + if "" != block.Name { + // Blocks in the bookmark panel display their name instead of content https://github.com/siyuan-note/siyuan/issues/8514 + block.Content = block.Name + } + if bs, ok := labelBlocks[label]; ok { bs = append(bs, block) labelBlocks[label] = bs