LeonYew-Ley104 downloadsHide timestamp prefixes in Zettelkasten-style internal link display text without changing notes or filenames.
Time Stamp Hider is an Obsidian plugin that hides timestamp prefixes in Zettelkasten-style internal link display text.

It is designed for notes named like this:
2603040057 Zettelkasten笔记法
2603162135 Obsidian 说明书
The links can be displayed like this:
Zettelkasten笔记法
Obsidian 说明书
The original filenames and Markdown content are not changed.
The default prefix pattern is:
^\d{10}\s+
This matches filenames that start with a 10-digit timestamp followed by one or more spaces.
For example:
2603040057 Zettelkasten笔记法
is displayed as:
Zettelkasten笔记法
Time Stamp Hider only changes display text in supported rendered editor surfaces.
It does not:
In Live Preview, the plugin keeps links editable:
[[...]] source so you can edit the link.Ctrl/Cmd + click opens the linked note.Open Settings → Community plugins → Time Stamp Hider.
Available settings:
Once available in the Obsidian community plugin directory:
Download the latest release files and place them in:
<vault>/.obsidian/plugins/time-stamp-hider/
Required files:
main.jsmanifest.jsonThen reload Obsidian and enable the plugin.
Install dependencies:
npm install
Build:
npm run build
The compiled plugin entrypoint is main.js.
MIT
Time Stamp Hider 是一个 Obsidian 插件,用于在界面显示中隐藏 Zettelkasten 风格文件名开头的时间戳。

它适用于这样的笔记文件名:
2603040057 Zettelkasten笔记法
2603162135 Obsidian 说明书
显示时可以变成:
Zettelkasten笔记法
Obsidian 说明书
插件不会修改原始文件名,也不会修改 Markdown 内容。
默认正则表达式:
^\d{10}\s+
它会匹配文件名开头的 10 位数字时间戳和后面的空格。
例如:
2603040057 Zettelkasten笔记法
显示为:
Zettelkasten笔记法
Time Stamp Hider 只改变受支持渲染区域里的显示文本。
它不会:
在 Live Preview 中,插件会尽量保持链接可编辑:
[[...]] 源码,方便编辑链接。Ctrl/Cmd + 点击会打开链接目标。打开 Settings → Community plugins → Time Stamp Hider。
可用设置:
插件进入 Obsidian 社区插件目录后:
从最新 GitHub Release 下载文件,放到:
<vault>/.obsidian/plugins/time-stamp-hider/
需要的文件:
main.jsmanifest.json然后重启 Obsidian,并在社区插件设置中启用插件。
安装依赖:
npm install
构建:
npm run build
编译后的插件入口是 main.js。
MIT