🎨 Supports converting relative path hyperlinks into document block references after importing Markdown https://github.com/siyuan-note/siyuan/issues/13817

Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2025-12-14 10:33:13 +08:00
parent 96e3996871
commit 9dfc77a7e9
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -828,7 +828,8 @@ func ImportFromLocalPath(boxID, localPath string, toPath string) (err error) {
return nil
}
if !d.IsDir() && !strings.HasSuffix(currentPath, ".md") && !strings.HasSuffix(currentPath, ".markdown") {
if !d.IsDir() && (!strings.HasSuffix(currentPath, ".md") && !strings.HasSuffix(currentPath, ".markdown") ||
strings.Contains(filepath.ToSlash(currentPath), "/assets/")) {
// 非 Markdown 文件作为资源文件处理 https://github.com/siyuan-note/siyuan/issues/13817
existName := assetsDone[currentPath]
var name string