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
+29
View File
@@ -0,0 +1,29 @@
<%*
// event: makes this note a timeline event such as a meeting, decision, incident or worklog.
const componentName = "event";
const file = tp.file.find_tfile(tp.file.path(true));
setTimeout(async () => {
await tp.app.fileManager.processFrontMatter(file, (frontmatter) => {
const components = Array.isArray(frontmatter["components"]) ? frontmatter["components"] : [];
if (!components.includes(componentName)) components.push(componentName);
frontmatter["components"] = components;
frontmatter["event_kind"] = frontmatter["event_kind"] ?? "note";
frontmatter["event_status"] = frontmatter["event_status"] ?? "occurred";
frontmatter["event_location"] = frontmatter["event_location"] ?? "";
frontmatter["event_participants"] = frontmatter["event_participants"] ?? [];
frontmatter["event_outcome"] = frontmatter["event_outcome"] ?? "";
});
}, 300)
-%>
## Event
### Participants
### Notes
### Outcome