1、实现富文本编辑器

2、实现文档转换为PDF、MOBI、EPUB格式
This commit is contained in:
Minho
2018-01-25 19:18:59 +08:00
parent dab6f31d01
commit e1ec6bb788
16 changed files with 990 additions and 473 deletions

View File

@@ -0,0 +1,8 @@
package models
// 转换结果
type ConvertBookResult struct {
PDFPath string
EpubPath string
MobiPath string
}