mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-02 06:48:49 +01:00
🐛 导出 PDF/HTML 时丢失自定义表情 https://github.com/siyuan-note/siyuan/issues/5535
This commit is contained in:
parent
0bccdb6f29
commit
333375c815
3 changed files with 19 additions and 3 deletions
|
|
@ -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 + "/"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue