菜单

8.1.20250825 通过模板实现笔记按noteId同步到墨问的修改

#官网修改记录 #墨问

通过templater插件,写了一个脚本,实现只有noteId的笔记才同步到墨问,防止卡片盒也同步到墨问。类似回传到Dinox的脚本,

<%*
// 1. 读取当前文件的 front-matter
const fm = tp.frontmatter;

// 2. 判断 noteId 是否存在且不为空
if (fm && fm.noteId) {
    // 3. 执行 墨问 同步命令
    await app.commands.executeCommandById("publish-note-to-mowen:publish-current-file-to-mowen");
}
%>

查找命令ID的方法

  • Ctrl/Cmd + Shift + I → 切到 Console 标签页。
app.commands.listCommands().filter(c => c.name.includes('Mowen')).forEach(c => console.log(c.id, '→', c.name));

ob地址:笔记