feat: update settings and plugins

This commit is contained in:
Ben Hong
2024-01-17 20:40:00 -08:00
parent 1916d57faa
commit c744a6fe89
82 changed files with 157524 additions and 5348 deletions

View File

@@ -0,0 +1,23 @@
{
"dateHighlightedFormat": "yyyy-MM-dd HH:mm:ss",
"dateSavedFormat": "yyyy-MM-dd HH:mm:ss",
"apiKey": "8fb3724c-ad8c-4728-9a6f-9d81c90b0302",
"filter": "ALL",
"syncAt": "2023-06-21T13:42:18",
"customQuery": "",
"template": "# {{{title}}} by {{{author}}}\n\n[Read on Omnivore]({{{omnivoreUrl}}})\n[Read Original]({{{originalUrl}}})\n\n{{#highlights.length}}\n## Highlights\n\n{{#highlights}}\n> {{{text}}} [⤴️]({{{highlightUrl}}}) {{#labels}} #{{name}} {{/labels}} ^{{{highlightID}}}\n{{#note}}\n\n{{{note}}}\n{{/note}}\n\n{{/highlights}}\n{{/highlights.length}}\n\nCreator:: {{author}}",
"highlightOrder": "LOCATION",
"syncing": false,
"folder": "Omnivore/{{{date}}}",
"folderDateFormat": "yyyy-MM-dd",
"endpoint": "https://api-prod.omnivore.app/api/graphql",
"filename": "{{{title}}} by {{{dateSaved}}}",
"filenameDateFormat": "yyyy-MM-dd",
"attachmentFolder": "Omnivore/attachments",
"version": "1.9.1",
"isSingleFile": false,
"frequency": 0,
"intervalId": 0,
"frontMatterVariables": [],
"frontMatterTemplate": ""
}

14626
.obsidian/plugins/obsidian-omnivore/main.js vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,10 @@
{
"id": "obsidian-omnivore",
"name": "Omnivore",
"version": "1.9.1",
"minAppVersion": "0.15.0",
"description": "This is an Omnivore plugin for Obsidian.",
"author": "Omnivore",
"authorUrl": "https://github.com/omnivore-app",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,21 @@
/* Style the button that is used to open and close the collapsible content */
.omnivore-collapsible {
cursor: pointer;
border-bottom: outset;
}
/* Style the collapsible content. Note: hidden by default */
.omnivore-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
.omnivore-collapsible:after {
content: "\02795"; /* Unicode character for "plus" sign (+) */
float: right;
}
.omnivore-active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
}