mirror of
https://github.com/bramses/bramses-highly-opinionated-vault-2023.git
synced 2025-02-26 07:53:55 +00:00
vault backup: 2022-12-08 02:34:16
This commit is contained in:
@@ -25,9 +25,36 @@ module.exports = async function createProject(params) {
|
||||
await params.app.vault.create(`${absolutePath}/Scratchpad.md`, "# Scratchpad\n\n");
|
||||
|
||||
// // Create a Kanban file in the new folder
|
||||
await params.app.vault.create(`${absolutePath}/Kanban.md`, `# Kanban\n\n## To Do\n\n## Doing\n\n## Done`);
|
||||
await params.app.vault.create(`${absolutePath}/Kanban.md`, `---
|
||||
|
||||
kanban-plugin: basic
|
||||
|
||||
---
|
||||
|
||||
## To Do
|
||||
|
||||
|
||||
|
||||
## In Progress
|
||||
|
||||
|
||||
|
||||
## Done
|
||||
|
||||
**Complete**
|
||||
|
||||
|
||||
## Waiting On
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
%% kanban:settings
|
||||
\`\`\`
|
||||
{"kanban-plugin":"basic"}
|
||||
\`\`\`
|
||||
%%`);
|
||||
|
||||
|
||||
// Open the new file
|
||||
await params.app.workspace.activeLeaf.openFile(newFile);
|
||||
}
|
||||
Reference in New Issue
Block a user