mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-29 04:48:48 +01:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
c2e2f37f87
2 changed files with 4 additions and 4 deletions
|
|
@ -40,9 +40,9 @@ type AttributeView struct {
|
|||
Rows []*Row `json:"rows"` // 表格行记录
|
||||
|
||||
Type AttributeViewType `json:"type"` // 属性视图类型
|
||||
Projections []string `json:"projections"` // 显示的列名,SELECT *
|
||||
Filters []*AttributeViewFilter `json:"filters"` // 过滤规则,WHERE ...
|
||||
Sorts []*AttributeViewSort `json:"sorts"` // 排序规则,ORDER BY ...
|
||||
Projections []string `json:"projections"` // 显示的列名
|
||||
Filters []*AttributeViewFilter `json:"filters"` // 过滤规则
|
||||
Sorts []*AttributeViewSort `json:"sorts"` // 排序规则
|
||||
}
|
||||
|
||||
// AttributeViewType 描述了属性视图的类型。
|
||||
|
|
|
|||
|
|
@ -710,7 +710,7 @@ func buildBlockFromNode(n *ast.Node, tree *parse.Tree) (block *Block, attributes
|
|||
markdown = treenode.ExportNodeStdMd(n, luteEngine)
|
||||
content = treenode.NodeStaticContent(n, nil, true, indexAssetPath)
|
||||
fc := treenode.FirstLeafBlock(n)
|
||||
fcontent = treenode.NodeStaticContent(fc, nil, false, false)
|
||||
fcontent = treenode.NodeStaticContent(fc, nil, true, false)
|
||||
parentID = n.Parent.ID
|
||||
// 将标题块作为父节点
|
||||
if h := heading(n); nil != h {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue