From 549069a8ee057d45fe6a6eecaa75f878c127cd5e Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Fri, 19 Dec 2025 21:40:52 +0800 Subject: [PATCH] :art: Improve callout block https://github.com/siyuan-note/siyuan/issues/16607 Signed-off-by: Daniel <845765@qq.com> --- kernel/sql/block.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/sql/block.go b/kernel/sql/block.go index d7ebbc096..8ddef4489 100644 --- a/kernel/sql/block.go +++ b/kernel/sql/block.go @@ -187,7 +187,7 @@ func nodeStaticContent(node *ast.Node, excludeTypes []string, includeTextMarkATi buf.WriteString(n.CalloutIcon + " ") } if "" != n.CalloutTitle { - buf.WriteString(n.CalloutTitle) + buf.WriteString(n.CalloutTitle + " ") } } return ast.WalkContinue