import vault

This commit is contained in:
Marcel Arndt
2026-07-16 14:04:45 +02:00
commit a2ad5f5c6d
90 changed files with 31429 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<%*
// base: keeps the note system-ready. File timestamps are managed by Obsidian/plugin metadata.
const file = tp.file.find_tfile(tp.file.path(true));
setTimeout(async () => {
await tp.app.fileManager.processFrontMatter(file, (frontmatter) => {
frontmatter["components"] = Array.isArray(frontmatter["components"]) ? frontmatter["components"] : [];
frontmatter["base_archived"] = frontmatter["base_archived"] ?? false;
});
}, 300)
-%>