change
This commit is contained in:
parent
14de295a1b
commit
af761f133b
223 changed files with 109433 additions and 16949 deletions
40
.obsidian/plugins/digitalgarden/data.json
vendored
Normal file
40
.obsidian/plugins/digitalgarden/data.json
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"githubRepo": "",
|
||||
"githubToken": "",
|
||||
"githubUserName": "",
|
||||
"gardenBaseUrl": "",
|
||||
"prHistory": [],
|
||||
"baseTheme": "dark",
|
||||
"theme": "{\"name\": \"default\", \"modes\": [\"dark\"]}",
|
||||
"faviconPath": "",
|
||||
"noteSettingsIsInitialized": true,
|
||||
"siteName": "Digital Garden",
|
||||
"slugifyEnabled": true,
|
||||
"noteIconKey": "dg-note-icon",
|
||||
"defaultNoteIcon": "",
|
||||
"showNoteIconOnTitle": false,
|
||||
"showNoteIconInFileTree": false,
|
||||
"showNoteIconOnInternalLink": false,
|
||||
"showNoteIconOnBackLink": false,
|
||||
"showCreatedTimestamp": false,
|
||||
"createdTimestampKey": "dg-created",
|
||||
"showUpdatedTimestamp": false,
|
||||
"updatedTimestampKey": "dg-updated",
|
||||
"timestampFormat": "MMM dd, yyyy h:mm a",
|
||||
"styleSettingsCss": "",
|
||||
"pathRewriteRules": "",
|
||||
"customFilters": [],
|
||||
"contentClassesKey": "dg-content-classes",
|
||||
"defaultNoteSettings": {
|
||||
"dgHomeLink": true,
|
||||
"dgPassFrontmatter": false,
|
||||
"dgShowBacklinks": false,
|
||||
"dgShowLocalGraph": false,
|
||||
"dgShowInlineTitle": false,
|
||||
"dgShowFileTree": false,
|
||||
"dgEnableSearch": false,
|
||||
"dgShowToc": false,
|
||||
"dgLinkPreview": false,
|
||||
"dgShowTags": false
|
||||
}
|
||||
}
|
27550
.obsidian/plugins/digitalgarden/main.js
vendored
Normal file
27550
.obsidian/plugins/digitalgarden/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/digitalgarden/manifest.json
vendored
Normal file
11
.obsidian/plugins/digitalgarden/manifest.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"id": "digitalgarden",
|
||||
"name": "Digital Garden",
|
||||
"version": "2.47.0",
|
||||
"minAppVersion": "0.12.0",
|
||||
"description": "Publish your notes to the web for others to enjoy. For free.",
|
||||
"author": "Ole Eskild Steensen",
|
||||
"authorUrl": "https://dg-docs.ole.dev/",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://ko-fi.com/oleeskild"
|
||||
}
|
43
.obsidian/plugins/digitalgarden/styles.css
vendored
Normal file
43
.obsidian/plugins/digitalgarden/styles.css
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
.digital-garden-publish-status-view ul {
|
||||
list-style-type: none;
|
||||
position: relative;
|
||||
margin-left: 5px;
|
||||
margin-top: 0;
|
||||
max-height: 250px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.digital-garden-publish-status-view h2 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.digital-garden-publish-status-view .collapsable {
|
||||
cursor: pointer;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.dg-settings > h1,
|
||||
h2,
|
||||
h3,
|
||||
h4 {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.dg-settings .svg-icon {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
@keyframes dg-rotate {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.dg-rotate {
|
||||
animation: dg-rotate 4s linear infinite;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue