vowel 0.0.2 → 0.1.0
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.
- package/.prettierrc +8 -0
- package/.vscode/settings.json +3 -0
- package/README.md +123 -27
- package/bin.js +30 -0
- package/content/.cache.json +627 -0
- package/content/.obsidian/app.json +3 -0
- package/content/.obsidian/appearance.json +3 -0
- package/content/.obsidian/core-plugins-migration.json +30 -0
- package/content/.obsidian/core-plugins.json +20 -0
- package/content/.obsidian/workspace.json +168 -0
- package/content/about.md +3 -0
- package/content/assets/open-props.css +1630 -0
- package/content/assets/styles-2.css +128 -0
- package/content/assets/styles-3.css +275 -0
- package/content/docs/file-structure.md +31 -0
- package/content/docs/folder-settings.md +22 -0
- package/content/docs/home.md +8 -0
- package/content/docs/images.md +10 -0
- package/content/docs/pages.md +64 -0
- package/content/docs/quickstart.md +52 -0
- package/content/docs/run-build-deploy.md +20 -0
- package/content/docs/settings.md +4 -0
- package/content/docs/styling.md +10 -0
- package/content/docs/taxonomies.md +37 -0
- package/content/home.md +73 -0
- package/content/roadmap.md +81 -0
- package/content/settings.md +12 -0
- package/content/vercel.json +5 -0
- package/jsconfig.json +18 -0
- package/package.json +37 -19
- package/server.js +80 -0
- package/src/app.d.ts +12 -0
- package/src/app.html +12 -0
- package/src/lib/components/Breadcrumbs.svelte +19 -0
- package/src/lib/components/DefaultStyles.svelte +126 -0
- package/src/lib/components/FrontMatterTaxonomy.svelte +48 -0
- package/src/lib/components/Frontmatter.svelte +54 -0
- package/src/lib/components/FrontmatterProperty.svelte +72 -0
- package/src/lib/components/Markdown/Image.svelte +48 -0
- package/src/lib/components/Markdown/Link.svelte +10 -0
- package/src/lib/components/Markdown/LinkPreview.svelte +39 -0
- package/src/lib/components/Markdown/Text.svelte +6 -0
- package/src/lib/components/Markdown/index.svelte +84 -0
- package/src/lib/components/Markdown/validators.js +29 -0
- package/src/lib/components/Nav.svelte +39 -0
- package/src/lib/components/Page.svelte +59 -0
- package/src/lib/components/Sitemap.svelte +38 -0
- package/src/lib/components/index.js +9 -0
- package/src/lib/index.js +1 -0
- package/src/lib/utilities/buildURL.js +18 -0
- package/src/lib/utilities/checkFileExists.js +16 -0
- package/src/lib/utilities/createFolderClass.js +4 -0
- package/src/lib/utilities/createPageClass.js +4 -0
- package/src/lib/utilities/getFileLabel.js +18 -0
- package/src/lib/utilities/getFolder.js +16 -0
- package/src/lib/utilities/getFolderLabel.js +8 -0
- package/src/lib/utilities/getPage.js +24 -0
- package/src/lib/utilities/getPagesByFolder.js +93 -0
- package/src/lib/utilities/index.js +20 -0
- package/src/lib/utilities/isActiveLink.js +12 -0
- package/src/lib/utilities/isObject.js +8 -0
- package/src/lib/utilities/loadCache.js +28 -0
- package/src/lib/utilities/mutateMarkdownAST.js +59 -0
- package/src/lib/utilities/mutateMarkdownFrontmatter.js +115 -0
- package/src/lib/utilities/parseDate.js +43 -0
- package/src/lib/utilities/processMarkdownFiles.js +212 -0
- package/src/lib/utilities/readMarkdownFile.js +134 -0
- package/src/lib/utilities/regexPatterns.js +12 -0
- package/src/lib/utilities/resolveHomeDirPath.js +5 -0
- package/src/lib/utilities/writeCache.js +14 -0
- package/src/routes/[...path]/+layout.server.js +71 -0
- package/src/routes/[...path]/+page.server.js +22 -0
- package/src/routes/[...path]/+page.svelte +125 -0
- package/src/routes/feed.xml/+server.js +120 -0
- package/src/routes/robots.txt/+server.js +54 -0
- package/src/routes/sitemap.xml/+server.js +68 -0
- package/static/favicon.png +0 -0
- package/static/styles.css +0 -0
- package/svelte.config.js +32 -0
- package/vercel.json +5 -0
- package/vite.config.js +72 -0
- package/index.js +0 -28
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[
|
|
2
|
+
"file-explorer",
|
|
3
|
+
"global-search",
|
|
4
|
+
"switcher",
|
|
5
|
+
"graph",
|
|
6
|
+
"backlink",
|
|
7
|
+
"canvas",
|
|
8
|
+
"outgoing-link",
|
|
9
|
+
"tag-pane",
|
|
10
|
+
"page-preview",
|
|
11
|
+
"daily-notes",
|
|
12
|
+
"templates",
|
|
13
|
+
"note-composer",
|
|
14
|
+
"command-palette",
|
|
15
|
+
"editor-status",
|
|
16
|
+
"bookmarks",
|
|
17
|
+
"outline",
|
|
18
|
+
"word-count",
|
|
19
|
+
"file-recovery"
|
|
20
|
+
]
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": {
|
|
3
|
+
"id": "966664a33c0f9428",
|
|
4
|
+
"type": "split",
|
|
5
|
+
"children": [
|
|
6
|
+
{
|
|
7
|
+
"id": "6f272e6d83175a0e",
|
|
8
|
+
"type": "tabs",
|
|
9
|
+
"children": [
|
|
10
|
+
{
|
|
11
|
+
"id": "6d5fa6e59ac0d3e8",
|
|
12
|
+
"type": "leaf",
|
|
13
|
+
"state": {
|
|
14
|
+
"type": "markdown",
|
|
15
|
+
"state": {
|
|
16
|
+
"file": "home.md",
|
|
17
|
+
"mode": "source",
|
|
18
|
+
"source": false
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"direction": "vertical"
|
|
26
|
+
},
|
|
27
|
+
"left": {
|
|
28
|
+
"id": "18e0bc63ac82562e",
|
|
29
|
+
"type": "split",
|
|
30
|
+
"children": [
|
|
31
|
+
{
|
|
32
|
+
"id": "9cc6c8640bf83790",
|
|
33
|
+
"type": "tabs",
|
|
34
|
+
"children": [
|
|
35
|
+
{
|
|
36
|
+
"id": "08551dcebb684ee5",
|
|
37
|
+
"type": "leaf",
|
|
38
|
+
"state": {
|
|
39
|
+
"type": "file-explorer",
|
|
40
|
+
"state": {
|
|
41
|
+
"sortOrder": "alphabetical"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "39b7b22b2e81f451",
|
|
47
|
+
"type": "leaf",
|
|
48
|
+
"state": {
|
|
49
|
+
"type": "search",
|
|
50
|
+
"state": {
|
|
51
|
+
"query": "",
|
|
52
|
+
"matchingCase": false,
|
|
53
|
+
"explainSearch": false,
|
|
54
|
+
"collapseAll": false,
|
|
55
|
+
"extraContext": false,
|
|
56
|
+
"sortOrder": "alphabetical"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "48ac4934e3c350a8",
|
|
62
|
+
"type": "leaf",
|
|
63
|
+
"state": {
|
|
64
|
+
"type": "bookmarks",
|
|
65
|
+
"state": {}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"direction": "horizontal",
|
|
72
|
+
"width": 300
|
|
73
|
+
},
|
|
74
|
+
"right": {
|
|
75
|
+
"id": "c120d9bbbfa46883",
|
|
76
|
+
"type": "split",
|
|
77
|
+
"children": [
|
|
78
|
+
{
|
|
79
|
+
"id": "d7378259eead963a",
|
|
80
|
+
"type": "tabs",
|
|
81
|
+
"children": [
|
|
82
|
+
{
|
|
83
|
+
"id": "3c5acbb57e9b2ecc",
|
|
84
|
+
"type": "leaf",
|
|
85
|
+
"state": {
|
|
86
|
+
"type": "backlink",
|
|
87
|
+
"state": {
|
|
88
|
+
"file": "home.md",
|
|
89
|
+
"collapseAll": false,
|
|
90
|
+
"extraContext": false,
|
|
91
|
+
"sortOrder": "alphabetical",
|
|
92
|
+
"showSearch": false,
|
|
93
|
+
"searchQuery": "",
|
|
94
|
+
"backlinkCollapsed": false,
|
|
95
|
+
"unlinkedCollapsed": true
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "dbc00eb5b912c400",
|
|
101
|
+
"type": "leaf",
|
|
102
|
+
"state": {
|
|
103
|
+
"type": "outgoing-link",
|
|
104
|
+
"state": {
|
|
105
|
+
"file": "home.md",
|
|
106
|
+
"linksCollapsed": false,
|
|
107
|
+
"unlinkedCollapsed": true
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "192b432a0da5e507",
|
|
113
|
+
"type": "leaf",
|
|
114
|
+
"state": {
|
|
115
|
+
"type": "tag",
|
|
116
|
+
"state": {
|
|
117
|
+
"sortOrder": "frequency",
|
|
118
|
+
"useHierarchy": true
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "7d5f5d40b932706c",
|
|
124
|
+
"type": "leaf",
|
|
125
|
+
"state": {
|
|
126
|
+
"type": "outline",
|
|
127
|
+
"state": {
|
|
128
|
+
"file": "home.md"
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"direction": "horizontal",
|
|
136
|
+
"width": 300,
|
|
137
|
+
"collapsed": true
|
|
138
|
+
},
|
|
139
|
+
"left-ribbon": {
|
|
140
|
+
"hiddenItems": {
|
|
141
|
+
"switcher:Open quick switcher": false,
|
|
142
|
+
"graph:Open graph view": false,
|
|
143
|
+
"canvas:Create new canvas": false,
|
|
144
|
+
"daily-notes:Open today's daily note": false,
|
|
145
|
+
"templates:Insert template": false,
|
|
146
|
+
"command-palette:Open command palette": false
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"active": "6d5fa6e59ac0d3e8",
|
|
150
|
+
"lastOpenFiles": [
|
|
151
|
+
"clouds.jpg",
|
|
152
|
+
"home.md",
|
|
153
|
+
"blog/travel/home.md",
|
|
154
|
+
"blog/hello-world.md",
|
|
155
|
+
"blog/cooking/home.md",
|
|
156
|
+
"blog/economics/home.md",
|
|
157
|
+
"blog/economics/smith.md",
|
|
158
|
+
"blog/economics/keynes.md",
|
|
159
|
+
"blog/home.md",
|
|
160
|
+
"blog/cooking/soup.md",
|
|
161
|
+
"blog/cooking/settings.md",
|
|
162
|
+
"blog/cooking/pancakes.md",
|
|
163
|
+
"blog/economics",
|
|
164
|
+
"blog/Untitled.md",
|
|
165
|
+
"about.md",
|
|
166
|
+
"settings.md"
|
|
167
|
+
]
|
|
168
|
+
}
|
package/content/about.md
ADDED