🎨 Copy one cell from Excel/HTML table and paste it using the cell's content https://github.com/siyuan-note/siyuan/issues/9614

This commit is contained in:
Daniel 2023-11-09 21:54:36 +08:00
parent 5d4015c458
commit 4190c7bf8d
No known key found for this signature in database
GPG Key ID: 86211BA83DF03017

View File

@ -84,6 +84,32 @@ func html2BlockDOM(c *gin.Context) {
n.Unlink()
}
// 表格只包含一个单元格时,将其转换为段落
// Copy one cell from Excel/HTML table and paste it using the cell's content https://github.com/siyuan-note/siyuan/issues/9614
unlinks = nil
if nil != tree.Root.FirstChild && ast.NodeTable == tree.Root.FirstChild.Type && (nil == tree.Root.FirstChild.Next ||
(ast.NodeKramdownBlockIAL == tree.Root.FirstChild.Next.Type && nil == tree.Root.FirstChild.Next.Next)) {
if nil != tree.Root.FirstChild.FirstChild && ast.NodeTableHead == tree.Root.FirstChild.FirstChild.Type {
head := tree.Root.FirstChild.FirstChild
if nil == head.Next && nil != head.FirstChild && nil == head.FirstChild.Next {
row := head.FirstChild
if nil != row.FirstChild && nil == row.FirstChild.Next {
cell := row.FirstChild
p := treenode.NewParagraph()
var contents []*ast.Node
for c := cell.FirstChild; nil != c; c = c.Next {
contents = append(contents, c)
}
for _, c := range contents {
p.AppendChild(c)
}
tree.Root.FirstChild.Unlink()
tree.Root.PrependChild(p)
}
}
}
}
if util.ContainerStd == model.Conf.System.Container {
// 处理本地资源文件复制
ast.Walk(tree.Root, func(n *ast.Node, entering bool) ast.WalkStatus {