Initial commit
This commit is contained in:
32
.obsidian/plugins/obsidian-omnivore/data.json
vendored
Normal file
32
.obsidian/plugins/obsidian-omnivore/data.json
vendored
Normal 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
14593
.obsidian/plugins/obsidian-omnivore/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian/plugins/obsidian-omnivore/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-omnivore/manifest.json
vendored
Normal 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
|
||||
}
|
||||
21
.obsidian/plugins/obsidian-omnivore/styles.css
vendored
Normal file
21
.obsidian/plugins/obsidian-omnivore/styles.css
vendored
Normal 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 (-) */
|
||||
}
|
||||
Reference in New Issue
Block a user