Open today's daily note by matching the date prefix in its filename.
An Obsidian plugin that opens today’s daily note by matching the date prefix in the filename.
Obsidian’s built-in Daily Notes feature normally looks for an exact filename such as:
2026-07-28.md
This plugin also recognizes descriptive filenames that start with the same date, for example:
2026-07-28火 知识大整理.md
2026-07-28读书笔记.md
The plugin reads the folder and date format from Obsidian’s core Daily Notes settings. For example:
{
"folder": "Life/日记",
"format": "YYYY-MM-DD"
}
If the folder contains:
2026-07-28.md
2026-07-28火 知识大整理.md
the descriptive note is preferred. If there are several descriptive notes, the plugin lets you choose one. If no file starts with today’s date, it creates the standard YYYY-MM-DD.md note.
After the plugin is accepted by the Obsidian Community Plugins directory:
main.js, manifest.json, and styles.css if provided from the latest GitHub release.daily-prefix-notes under <your-vault>/.obsidian/plugins/.MIT License. See LICENSE.
一个用于 Obsidian 的日记插件。它会按照文件名中的日期前缀查找并打开当天的日记。
Obsidian 自带的 Daily Notes 通常只会精确查找:
2026-07-28.md
本插件同时支持以日期开头、后面带有自定义标题的日记文件,例如:
2026-07-28火 知识大整理.md
2026-07-28读书笔记.md
插件会读取 Obsidian 核心 Daily Notes 的目录和日期格式。例如:
{
"folder": "Life/日记",
"format": "YYYY-MM-DD"
}
如果目录中存在:
2026-07-28.md
2026-07-28火 知识大整理.md
插件会优先打开带有具体标题的日记。如果有多篇带标题的日记,会让你选择要打开的文件。如果当天没有任何文件以日期开头,则创建标准的 YYYY-MM-DD.md 文件。
插件被 Obsidian 社区插件目录收录后:
main.js、manifest.json,以及发布包中提供的 styles.css。<你的 Vault>/.obsidian/plugins/ 下创建 daily-prefix-notes 文件夹。本项目使用 MIT License,详见 LICENSE。