mokeyish / obsidian-enhancing-export

This is an enhancing export plugin base on Pandoc for Obsidian (https://obsidian.md/ ). It's allow you to export to formats like Markdown、Markdown (Hugo https://gohugo.io/ )、Html、docx、Latex etc.
MIT License
340 stars 24 forks source link

导出时自定义模板设置 #122

Open Arionbat opened 1 year ago

Arionbat commented 1 year ago

能否将 pdf 导出 时,选择的模板弄成自定义选项,可以暴露出一个json 文件,用来配置模板列表

image

代码中是这样的

export const PRESET_OPTIONS_META: PropertyGridMeta = { 'textemplate': { title: 'Latex Template', type: 'dropdown', options: [ { name: 'None', value: null }, { name: 'Dissertation', value: 'dissertation.tex' }, { name: 'Academic Paper', value: 'neurips.tex' }, ], }, };

mokeyish commented 1 year ago

可以的,但是暂无这个精力开发这个功能。看你也有前端基础,你可以尝试自己加上这个功能。

这个 UI 可以直接扫描目录,也可以用对话框选择模板文件+历史模板记录(下啦选择)。

目前,这个模板功能是 @universvm Leo 添加的。

Arionbat commented 1 year ago

好的,谢谢,我会对这个功能在我本地进行一下测试,如果可以的话,到时候我会提一个PR