vault backup: 2022-12-08 02:34:16

This commit is contained in:
Bram Adams
2022-12-08 02:34:16 -06:00
parent a17d1c688e
commit cb2fe30ffc
6 changed files with 90 additions and 20 deletions

View File

@@ -13,7 +13,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "Tests/Private.md", "file": "_PARA/Projects/Test Project/Scratchpad.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
@@ -56,7 +56,7 @@
} }
}, },
{ {
"id": "a15781b0c4634342", "id": "885911e69901227d",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "file-explorer", "type": "file-explorer",
@@ -86,7 +86,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "Tests/Private.md", "file": "_PARA/Projects/Test Project/Scratchpad.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@@ -103,7 +103,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "Tests/Private.md", "file": "_PARA/Projects/Test Project/Scratchpad.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@@ -126,7 +126,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "Tests/Private.md" "file": "_PARA/Projects/Test Project/Scratchpad.md"
} }
} }
}, },
@@ -137,13 +137,21 @@
"type": "calendar", "type": "calendar",
"state": {} "state": {}
} }
},
{
"id": "c102a50492c64997",
"type": "leaf",
"state": {
"type": "git-view",
"state": {}
} }
] }
],
"currentTab": 5
} }
], ],
"direction": "horizontal", "direction": "horizontal",
"width": 300, "width": 300
"collapsed": true
}, },
"left-ribbon": { "left-ribbon": {
"hiddenItems": { "hiddenItems": {
@@ -158,15 +166,15 @@
}, },
"active": "024b34ec0fa6ec71", "active": "024b34ec0fa6ec71",
"lastOpenFiles": [ "lastOpenFiles": [
"Daily/2022-12-08.md", "_PARA/Projects/Test Project 2/Scratchpad.md",
"_PARA/Projects/Test Project 2/Kanban.md",
"_PARA/Projects/ferg/ferg.md",
"_PARA/Projects/ferg/Scratchpad.md",
"_PARA/Projects/ferg/Kanban.md",
"_PARA/Projects/Test Project/Scratchpad.md",
"Tests/Private.md", "Tests/Private.md",
"Daily/2022-12-08.md",
"Tests/Tests.md", "Tests/Tests.md",
"_PARA/Projects/new proj/new proj.md", "_PARA/Projects/new proj/new proj.md"
"Untitled Kanban.md",
"_PARA/Projects/new proj/Kanban.md",
"_PARA/Projects/new proj/Scratchpad.md",
"_PARA/Projects/whitechapel/whitechapel.md",
"z/z.md",
"z/Scratchpad.md"
] ]
} }

View File

@@ -0,0 +1,30 @@
---
kanban-plugin: basic
---
## To Do
## In Progress
## Done
**Complete**
## Waiting On
%% kanban:settings
```
{"kanban-plugin":"basic"}
```
%%

View File

@@ -0,0 +1,2 @@
# Scratchpad

View File

@@ -1 +1,2 @@
Im test project 2 description # Test Project 2

View File

@@ -0,0 +1,2 @@
2022-12-08 - [GitHub - bramses/bramses-opinionated-template-2023](https://github.com/bramses/bramses-opinionated-template-2023)

View File

@@ -25,9 +25,36 @@ module.exports = async function createProject(params) {
await params.app.vault.create(`${absolutePath}/Scratchpad.md`, "# Scratchpad\n\n"); await params.app.vault.create(`${absolutePath}/Scratchpad.md`, "# Scratchpad\n\n");
// // Create a Kanban file in the new folder // // 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);
} }