目录

leanote 导出 markdown

目录

Leanote导出Markdown-Wander

核心步骤 resources\app\public\plugins\export_html\tpl\markdown.tpl,将内容全部删除,修改为 {content}

resources\app\public\plugins\export_html\plugin.js, 从 320 行开始,修改为

1
2
3
var name = note.Title ? note.Title: getMsg('Untitled');
name+=note.IsMarkdown?'.md':'.html';
name = me.fixFilename(name);

关闭 leanote 后在启动(注意新版的 leanote 不是点右上角的 X 就关闭的),这样以后就能导出纯 markdown了