This commit is contained in:
Jesse James Isler 2022-06-22 10:09:28 +02:00
parent 47e32f577a
commit 84e485f5b4
10 changed files with 24091 additions and 13 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.obsidian/workspace
.obsidian/workspace

4
.obsidian/app.json vendored
View File

@ -1,7 +1,5 @@
{ {
"legacyEditor": false, "legacyEditor": false,
"livePreview": true, "livePreview": true,
"attachmentFolderPath": "img", "attachmentFolderPath": "attachment"
"alwaysUpdateLinks": true,
"fileSortOrder": "alphabetical"
} }

View File

@ -1,3 +1,3 @@
{ {
"baseFontSize": 17 "translucency": true
} }

View File

@ -1,3 +1,4 @@
[ [
"obsidian-git" "obsidian-git",
"table-editor-obsidian"
] ]

3
.obsidian/page-preview.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"editor": false
}

View File

@ -1,24 +1,24 @@
{ {
"commitMessage": "vault backup: {{date}}", "commitMessage": "vault backup: {{date}}",
"autoCommitMessage": "vault backup: {{date}}", "autoCommitMessage": "vault auto-backup: {{date}}",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss", "commitDateFormat": "DD.MM.YYYY - HH:mm:ss",
"autoSaveInterval": 0, "autoSaveInterval": 5,
"autoPushInterval": 0, "autoPushInterval": 0,
"autoPullInterval": 0, "autoPullInterval": 5,
"autoPullOnBoot": false, "autoPullOnBoot": true,
"disablePush": false, "disablePush": false,
"pullBeforePush": true, "pullBeforePush": true,
"disablePopups": false, "disablePopups": false,
"listChangedFilesInMessageBody": false, "listChangedFilesInMessageBody": true,
"showStatusBar": true, "showStatusBar": true,
"updateSubmodules": false, "updateSubmodules": false,
"syncMethod": "merge", "syncMethod": "merge",
"gitPath": "", "gitPath": "",
"customMessageOnAutoBackup": false, "customMessageOnAutoBackup": true,
"autoBackupAfterFileChange": false, "autoBackupAfterFileChange": false,
"treeStructure": false, "treeStructure": false,
"refreshSourceControl": true, "refreshSourceControl": true,
"basePath": "", "basePath": "",
"differentIntervalCommitAndPush": false, "differentIntervalCommitAndPush": false,
"changedFilesInStatusBar": false "changedFilesInStatusBar": true
} }

View File

@ -0,0 +1,6 @@
{
"formatType": "normal",
"showRibbonIcon": true,
"bindEnter": true,
"bindTab": true
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,11 @@
{
"id": "table-editor-obsidian",
"name": "Advanced Tables",
"author": "Tony Grosinger",
"authorUrl": "https://grosinger.net",
"description": "Improved table navigation, formatting, manipulation, and formulas",
"isDesktopOnly": false,
"minAppVersion": "0.13.8",
"version": "0.17.3",
"js": "main.js"
}

View File

@ -0,0 +1,28 @@
.HyperMD-table-row span.cm-inline-code {
font-size: 100%;
}
.widget-icon {
width: 20px;
height: 20px;
fill: var(--text-muted);
}
.widget-icon:hover {
fill: var(--text-normal);
}
.advanced-tables-csv-export textarea {
height: 200px;
width: 100%;
}
.advanced-tables-donation {
width: 70%;
margin: 0 auto;
text-align: center;
}
.advanced-tables-donate-button {
margin: 10px;
}