This commit is contained in:
Liang Ding 2023-05-11 09:26:49 +08:00
parent 05d2a5147d
commit 825e3767e7
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
3 changed files with 29 additions and 0 deletions

View file

@ -31,6 +31,23 @@ import (
"github.com/siyuan-note/siyuan/kernel/util"
)
func exportEPUB(c *gin.Context) {
ret := gulu.Ret.NewResult()
defer c.JSON(http.StatusOK, ret)
arg, ok := util.JsonArg(c, ret)
if !ok {
return
}
id := arg["id"].(string)
name, zipPath := model.ExportPandocConvertZip(id, "epub", ".epub")
ret.Data = map[string]interface{}{
"name": name,
"zip": zipPath,
}
}
func exportRTF(c *gin.Context) {
ret := gulu.Ret.NewResult()
defer c.JSON(http.StatusOK, ret)