🎨 编辑器支持属性视图 - 表格 https://github.com/siyuan-note/siyuan/issues/7536

This commit is contained in:
Liang Ding 2023-03-03 15:01:42 +08:00
parent 6b086ed1d3
commit 832f31cbb3
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
6 changed files with 111 additions and 56 deletions

View file

@ -17,13 +17,6 @@
package av
type Cell struct {
ID string `json:"id"`
Value string `json:"value"`
}
type CellBlock struct {
*Cell
}
func NewCellBlock(blockID string) *CellBlock {
return &CellBlock{&Cell{Value: blockID}}
}