Initial commit

This commit is contained in:
Mathis Gauthey
2023-08-05 19:14:53 +01:00
parent 13a70a46bf
commit f366d5b7b6
7803 changed files with 186098 additions and 2 deletions

View File

@@ -0,0 +1,32 @@
{
"dateHighlightedFormat": "yyyy-MM-dd HH:mm:ss",
"dateSavedFormat": "yyyy-MM-dd HH:mm:ss",
"apiKey": "",
"filter": "ALL",
"syncAt": "",
"customQuery": "",
"template": "# {{{title}}}\n\n#Omnivore\n\n[Read on Omnivore]({{{omnivoreUrl}}})\n[Read Original]({{{originalUrl}}})\n\n{{#note}}\n## Notes\n\n{{{note}}}\n{{/note}}\n\n{{#highlights.length}}\n## Highlights\n\n{{#highlights}}\n> {{{text}}} [⤴️]({{{highlightUrl}}}) {{#labels}} #{{name}} {{/labels}}\n{{#note}}\n\n{{{note}}}\n{{/note}}\n\n{{/highlights}}\n{{/highlights.length}}\n## Webpage\n\n{{{content}}}",
"highlightOrder": "LOCATION",
"syncing": false,
"folder": "_Sources/{{{date}}}",
"folderDateFormat": "yyyy-MM-dd",
"endpoint": "https://api-prod.omnivore.app/api/graphql",
"filename": "{{{title}}}",
"filenameDateFormat": "yyyy-MM-dd",
"attachmentFolder": "_Sources/attachments",
"version": "1.6.0",
"isSingleFile": false,
"frequency": 0,
"intervalId": 0,
"frontMatterVariables": [
"title",
"author",
"tags",
"state",
"date_published",
"date_saved",
"date_read",
"date_archived"
],
"frontMatterTemplate": ""
}

14593
.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.6.0",
"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 (-) */
}