From 10f991c42a56d41ca65f70e566696334747fabdc Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Fri, 31 Mar 2023 15:44:48 +0800 Subject: [PATCH] :art: PDF export supports setting footer https://github.com/siyuan-note/siyuan/issues/7478 --- kernel/conf/export.go | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/conf/export.go b/kernel/conf/export.go index f63c7e43d..5b3773845 100644 --- a/kernel/conf/export.go +++ b/kernel/conf/export.go @@ -28,6 +28,7 @@ type Export struct { FileAnnotationRefMode int `json:"fileAnnotationRefMode"` // 文件标注引用导出模式,0:文件名 - 页码 - 锚文本,1:仅锚文本 PandocBin string `json:"pandocBin"` // Pandoc 可执行文件路径 MarkdownYFM bool `json:"markdownYFM"` // Markdown 导出时是否添加 YAML Front Matter https://github.com/siyuan-note/siyuan/issues/7727 + PDFFooter string `json:"pdfFooter"` // PDF 导出时页脚内容 } func NewExport() *Export {