mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-17 07:00:12 +01:00
🐛 清理未引用资源时未忽略 custom-data-assets 属性定义的资源文件 Fix https://github.com/siyuan-note/siyuan/issues/4122
This commit is contained in:
parent
14f8ba10a9
commit
02b0c553e3
2 changed files with 6 additions and 2 deletions
|
|
@ -578,7 +578,7 @@ func buildSpanFromNode(n *ast.Node, tree *parse.Tree, rootID, boxID, p string) (
|
|||
|
||||
var src []byte
|
||||
for _, attr := range nodes[0].Attr {
|
||||
if "src" == attr.Key || "data-assets" == attr.Key {
|
||||
if "src" == attr.Key || "data-assets" == attr.Key || "custom-data-assets" == attr.Key {
|
||||
src = gulu.Str.ToBytes(attr.Val)
|
||||
break
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue