Post by author
按作者聚合
包含 wtjl 的文章列表
用 QuickAdd 实现正则替换
PixPin2025-12-3104-55-26 js let Notice; function applyRule(rule, text) { if (!text !rule) return text; const { pattern, replacement, useRegex } = Array.isArray(rule) ? { pattern: rule[0], replacement: rule[1], useRegex: rule[2] } : rule {};
wtjl
Pkmer
用 QuickAdd 实现跳转到指定标题
Pasted image 20251230092116 js module.exports = async function showAndGotoHeadings(params) { const { quickAddApi = app.plugins.plugins.quickadd.api } = params {}; const { headings } = app.metadataCache.getFileCache(app.workspace.getActiveFile()); if (!headings) r
wtjl
Pkmer
Minimal 主题介绍
image.png 直接在 设置 - 外观 - 主题 - 管理 界面下搜索, 然后下载并使用即可. 包括 Minimal Theme Settings 和 Style Settings 两部分. 通过obsidian-minimal-settings 插件可以对主题样式进行调整,下面是主题的主要设置项: - Colorful active states - Colorful headings - Focus mode: 建议在状态栏新建开关按钮 通
wtjl
Pkmer