mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 14:40:12 +01:00
🎨 Improve IFrame handling for exporting HTML/PDF/Image https://github.com/siyuan-note/siyuan/issues/16158 https://github.com/siyuan-note/siyuan/issues/4035
Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
parent
ba4dd38206
commit
b91f2cb3ad
1 changed files with 18 additions and 23 deletions
|
|
@ -1008,15 +1008,15 @@ func prepareExportTree(bt *treenode.BlockTree) (ret *parse.Tree) {
|
|||
|
||||
func processIFrame(tree *parse.Tree) {
|
||||
// 导出 PDF/Word 时 IFrame 块使用超链接 https://github.com/siyuan-note/siyuan/issues/4035
|
||||
var unlinks []*ast.Node
|
||||
ast.Walk(tree.Root, func(n *ast.Node, entering bool) ast.WalkStatus {
|
||||
if !entering {
|
||||
if !entering || ast.NodeIFrame != n.Type {
|
||||
return ast.WalkContinue
|
||||
}
|
||||
if ast.NodeIFrame == n.Type {
|
||||
|
||||
n.Type = ast.NodeParagraph
|
||||
index := bytes.Index(n.Tokens, []byte("src=\""))
|
||||
if 0 > index {
|
||||
n.InsertBefore(&ast.Node{Type: ast.NodeText, Tokens: n.Tokens})
|
||||
n.AppendChild(&ast.Node{Type: ast.NodeText, Tokens: n.Tokens})
|
||||
} else {
|
||||
src := n.Tokens[index+len("src=\""):]
|
||||
src = src[:bytes.Index(src, []byte("\""))]
|
||||
|
|
@ -1028,15 +1028,10 @@ func processIFrame(tree *parse.Tree) {
|
|||
link.AppendChild(&ast.Node{Type: ast.NodeOpenParen})
|
||||
link.AppendChild(&ast.Node{Type: ast.NodeLinkDest, Tokens: src})
|
||||
link.AppendChild(&ast.Node{Type: ast.NodeCloseParen})
|
||||
n.InsertBefore(link)
|
||||
}
|
||||
unlinks = append(unlinks, n)
|
||||
n.AppendChild(link)
|
||||
}
|
||||
return ast.WalkContinue
|
||||
})
|
||||
for _, n := range unlinks {
|
||||
n.Unlink()
|
||||
}
|
||||
}
|
||||
|
||||
func ProcessPDF(id, p string, merge, removeAssets, watermark bool) (err error) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue