Bläddra i källkod

:art: 查询嵌入块支持设置是否显示面包屑 https://github.com/siyuan-note/siyuan/issues/6184

Liang Ding 2 år sedan
förälder
incheckning
ab1c3669c4
1 ändrade filer med 3 tillägg och 9 borttagningar
  1. 3 9
      kernel/model/block.go

+ 3 - 9
kernel/model/block.go

@@ -434,15 +434,9 @@ func getEmbeddedBlock(trees map[string]*parse.Tree, sqlBlock *sql.Block, heading
 	luteEngine.RenderOptions.ProtyleContenteditable = false // 不可编辑
 	luteEngine.RenderOptions.ProtyleContenteditable = false // 不可编辑
 	dom := renderBlockDOMByNodes(nodes, luteEngine)
 	dom := renderBlockDOMByNodes(nodes, luteEngine)
 	block = &Block{Box: def.Box, Path: def.Path, HPath: b.HPath, ID: def.ID, Type: def.Type.String(), Content: dom}
 	block = &Block{Box: def.Box, Path: def.Path, HPath: b.HPath, ID: def.ID, Type: def.Type.String(), Content: dom}
-	defBreadCrumb := def.IALAttr("breadcrumb")
-	if "" != defBreadCrumb {
-		if "true" == defBreadCrumb {
-			blockPaths = buildBlockBreadcrumb(def)
-		}
-	} else {
-		if Conf.Editor.EmbedBlockBreadcrumb {
-			blockPaths = buildBlockBreadcrumb(def)
-		}
+	if breadcrumb {
+		blockPaths = buildBlockBreadcrumb(def)
+
 	}
 	}
 	if 1 > len(blockPaths) {
 	if 1 > len(blockPaths) {
 		blockPaths = []*BlockPath{}
 		blockPaths = []*BlockPath{}