🐛 导出 PDF/HTML 时丢失自定义表情 https://github.com/siyuan-note/siyuan/issues/5535

This commit is contained in:
Liang Ding 2022-07-28 23:47:55 +08:00
parent 0bccdb6f29
commit 333375c815
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
3 changed files with 19 additions and 3 deletions

View file

@ -249,6 +249,14 @@ func ExportMarkdownHTML(id, savePath string, docx bool) (name, dom string) {
}
}
// 复制自定义表情图片
from := filepath.Join(util.DataDir, "emojis")
to := filepath.Join(savePath, "emojis")
if err := gulu.File.Copy(from, to); nil != err {
logging.LogErrorf("copy emojis from [%s] to [%s] failed: %s", from, savePath, err)
return
}
luteEngine := NewLute()
luteEngine.SetFootnotes(true)
md := treenode.FormatNode(tree.Root, luteEngine)
@ -331,6 +339,14 @@ func ExportHTML(id, savePath string, pdf bool) (name, dom string) {
return
}
}
// 复制自定义表情图片
from := filepath.Join(util.DataDir, "emojis")
to := filepath.Join(savePath, "emojis")
if err := gulu.File.Copy(from, to); nil != err {
logging.LogErrorf("copy emojis from [%s] to [%s] failed: %s", from, savePath, err)
return
}
} else { // 导出 PDF 需要将资源文件路径改为 HTTP 伺服
luteEngine.RenderOptions.LinkBase = "http://127.0.0.1:" + util.ServerPort + "/"
}