@karaoke-cms/create 0.6.2 → 0.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/karaoke-create-vault/.obsidian/app.json +14 -0
  2. package/karaoke-create-vault/.obsidian/appearance.json +1 -0
  3. package/karaoke-create-vault/.obsidian/community-plugins.json +4 -0
  4. package/karaoke-create-vault/.obsidian/core-plugins.json +33 -0
  5. package/karaoke-create-vault/.obsidian/plugins/folder-notes/data.json +131 -0
  6. package/karaoke-create-vault/.obsidian/plugins/folder-notes/main.js +9190 -0
  7. package/karaoke-create-vault/.obsidian/plugins/folder-notes/manifest.json +12 -0
  8. package/karaoke-create-vault/.obsidian/plugins/folder-notes/styles.css +355 -0
  9. package/karaoke-create-vault/.obsidian/plugins/templater-obsidian/main.js +45 -0
  10. package/karaoke-create-vault/.obsidian/plugins/templater-obsidian/manifest.json +11 -0
  11. package/karaoke-create-vault/.obsidian/plugins/templater-obsidian/styles.css +226 -0
  12. package/karaoke-create-vault/blog/draft-post.md +15 -0
  13. package/karaoke-create-vault/blog/hello-world.md +26 -0
  14. package/karaoke-create-vault/docs/getting-started.md +49 -0
  15. package/karaoke-create-vault/docs/testing.md +0 -0
  16. package/karaoke-create-vault/karaoke-cms/config/collections.yaml +10 -0
  17. package/karaoke-create-vault/karaoke-cms/manual/configuration.md +77 -0
  18. package/karaoke-create-vault/karaoke-cms/manual/content.md +38 -0
  19. package/karaoke-create-vault/karaoke-cms/manual/deployment.md +46 -0
  20. package/karaoke-create-vault/karaoke-cms/manual/index.md +41 -0
  21. package/karaoke-create-vault/karaoke-cms/manual/privacy.md +37 -0
  22. package/karaoke-create-vault/karaoke-cms/templates/blog-header.md +9 -0
  23. package/karaoke-create-vault/karaoke-cms/templates/docs-header.md +9 -0
  24. package/karaoke-create-vault/karaoke-cms/templates/index-by-foldernote.md +8 -0
  25. package/package.json +3 -2
  26. package/src/index.js +29 -11
  27. package/src/templates.js +21 -72
@@ -0,0 +1,14 @@
1
+ {
2
+ "attachmentFolderPath": "public/attachments",
3
+ "alwaysUpdateLinks": true,
4
+ "showUnsupportedFiles": true,
5
+ "userIgnoreFilters": [
6
+ "src",
7
+ "node_modules",
8
+ ".github",
9
+ "scripts",
10
+ "public",
11
+ "dist",
12
+ ".astro"
13
+ ]
14
+ }
@@ -0,0 +1,4 @@
1
+ [
2
+ "folder-notes",
3
+ "templater-obsidian"
4
+ ]
@@ -0,0 +1,33 @@
1
+ {
2
+ "file-explorer": true,
3
+ "global-search": true,
4
+ "switcher": true,
5
+ "graph": true,
6
+ "backlink": true,
7
+ "canvas": true,
8
+ "outgoing-link": true,
9
+ "tag-pane": true,
10
+ "footnotes": false,
11
+ "properties": true,
12
+ "page-preview": true,
13
+ "daily-notes": true,
14
+ "templates": true,
15
+ "note-composer": true,
16
+ "command-palette": true,
17
+ "slash-command": false,
18
+ "editor-status": true,
19
+ "bookmarks": true,
20
+ "markdown-importer": false,
21
+ "zk-prefixer": false,
22
+ "random-note": false,
23
+ "outline": true,
24
+ "word-count": true,
25
+ "slides": false,
26
+ "audio-recorder": false,
27
+ "workspaces": false,
28
+ "file-recovery": true,
29
+ "publish": false,
30
+ "sync": true,
31
+ "bases": true,
32
+ "webviewer": false
33
+ }
@@ -0,0 +1,131 @@
1
+ {
2
+ "syncFolderName": true,
3
+ "ctrlKey": true,
4
+ "altKey": false,
5
+ "hideFolderNote": true,
6
+ "templatePath": "",
7
+ "autoCreate": false,
8
+ "autoCreateFocusFiles": true,
9
+ "autoCreateForAttachmentFolder": false,
10
+ "autoCreateForFiles": false,
11
+ "enableCollapsing": false,
12
+ "excludeFolders": [],
13
+ "whitelistFolders": [],
14
+ "showDeleteConfirmation": true,
15
+ "underlineFolder": true,
16
+ "stopWhitespaceCollapsing": true,
17
+ "underlineFolderInPath": true,
18
+ "openFolderNoteOnClickInPath": true,
19
+ "openInNewTab": false,
20
+ "focusExistingTab": false,
21
+ "oldFolderNoteName": "{{folder_name}}",
22
+ "folderNoteName": "index",
23
+ "folderNoteType": ".md",
24
+ "disableFolderHighlighting": false,
25
+ "newFolderNoteName": "{{folder_name}}",
26
+ "storageLocation": "insideFolder",
27
+ "syncDelete": false,
28
+ "showRenameConfirmation": true,
29
+ "defaultOverview": {
30
+ "id": "",
31
+ "folderPath": "",
32
+ "title": "{{folderName}} overview",
33
+ "showTitle": false,
34
+ "depth": 3,
35
+ "includeTypes": [
36
+ "folder",
37
+ "markdown"
38
+ ],
39
+ "style": "list",
40
+ "disableFileTag": false,
41
+ "sortBy": "name",
42
+ "sortByAsc": true,
43
+ "showEmptyFolders": true,
44
+ "onlyIncludeSubfolders": true,
45
+ "storeFolderCondition": true,
46
+ "showFolderNotes": false,
47
+ "disableCollapseIcon": true,
48
+ "alwaysCollapse": false,
49
+ "autoSync": true,
50
+ "allowDragAndDrop": true,
51
+ "hideLinkList": true,
52
+ "hideFolderOverview": false,
53
+ "useActualLinks": false,
54
+ "fmtpIntegration": false,
55
+ "titleSize": 1,
56
+ "isInCallout": false,
57
+ "useWikilinks": true
58
+ },
59
+ "useSubmenus": true,
60
+ "syncMove": true,
61
+ "frontMatterTitle": {
62
+ "enabled": false,
63
+ "explorer": true,
64
+ "path": true
65
+ },
66
+ "settingsTab": "general",
67
+ "supportedFileTypes": [
68
+ "md",
69
+ "canvas",
70
+ "base"
71
+ ],
72
+ "boldName": false,
73
+ "boldNameInPath": false,
74
+ "cursiveName": false,
75
+ "cursiveNameInPath": false,
76
+ "disableOpenFolderNoteOnClick": false,
77
+ "openByClick": true,
78
+ "openWithCtrl": false,
79
+ "openWithAlt": false,
80
+ "excludeFolderDefaultSettings": {
81
+ "type": "folder",
82
+ "path": "",
83
+ "id": "c102b934-b388-4ae6-9712-a566cc85d23a",
84
+ "subFolders": true,
85
+ "disableSync": true,
86
+ "disableAutoCreate": true,
87
+ "disableFolderNote": false,
88
+ "enableCollapsing": false,
89
+ "position": 0,
90
+ "excludeFromFolderOverview": false,
91
+ "string": "",
92
+ "hideInSettings": false,
93
+ "detached": false,
94
+ "showFolderNote": false
95
+ },
96
+ "excludePatternDefaultSettings": {
97
+ "type": "pattern",
98
+ "path": "",
99
+ "id": "a87f72a1-2508-48f8-b251-344b5bdb5729",
100
+ "subFolders": true,
101
+ "disableSync": true,
102
+ "disableAutoCreate": true,
103
+ "disableFolderNote": false,
104
+ "enableCollapsing": false,
105
+ "position": 0,
106
+ "excludeFromFolderOverview": false,
107
+ "string": "",
108
+ "hideInSettings": false,
109
+ "detached": false,
110
+ "showFolderNote": false
111
+ },
112
+ "hideCollapsingIcon": false,
113
+ "hideCollapsingIconForEmptyFolders": false,
114
+ "tabManagerEnabled": true,
115
+ "ignoreAttachmentFolder": true,
116
+ "deleteFilesAction": "trash",
117
+ "openSidebar": {
118
+ "mobile": false,
119
+ "desktop": true
120
+ },
121
+ "highlightFolder": true,
122
+ "persistentSettingsTab": {
123
+ "afterRestart": true,
124
+ "afterChangingTab": true
125
+ },
126
+ "firstTimeInsertOverview": true,
127
+ "fvGlobalSettings": {
128
+ "autoUpdateLinks": true
129
+ },
130
+ "hideFolderNoteNameInPath": false
131
+ }