-
Notifications
You must be signed in to change notification settings - Fork 3.9k
自定义Epub导出模板
Horis edited this page Dec 15, 2023
·
1 revision
在导出目录新建一个名为Asset
的文件夹,目录结构如下
.
├── Asset
│ ├── Images
│ │ └── test.jpg
│ ├── Styles
│ │ └── main.css
│ └── Text
│ ├── chapter.html
│ ├── cover.html
│ └── intro.html
└──
Asset中里面必须有Text文件夹,Text文件夹里必须有chapter.html,否则导出正文会为空
Text文件夹里面chapter.html是正文模板
其他的html格式的文件是封面、简介模板或其他模板,处理后添加到epub中
Asset中的其他文件会直接复制到epub中
1、正文模板(chapter.html):
{title}
处理后的章节标题(是一段html)
{ori_title}
原始章节标题(纯文本)
{content}
章节内容html
2、其他模板(cover.html、intro.html):
{name}
书名
{author}
作者
{intro}
简介
{kind}
分类
{wordCount}
字数