This commit is contained in:
Bram Adams
2022-12-08 19:17:10 -06:00
parent 6a505f7e99
commit ce3130bd79
32 changed files with 21757 additions and 58162 deletions

20
.obsidian/plugins/omnisearch/data.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
"hideExcluded": false,
"ignoreDiacritics": true,
"indexedFileTypes": [],
"PDFIndexing": false,
"imagesIndexing": false,
"showShortName": false,
"ribbonIcon": true,
"showExcerpt": true,
"renderLineReturnInExcerpts": true,
"showCreateButton": false,
"hightlight": true,
"showPreviousQueryResults": true,
"simpleSearch": false,
"weightBasename": 2,
"weightH1": 1.5,
"weightH2": 1.3,
"weightH3": 1.1,
"welcomeMessage": "1.8.0-beta.3"
}

55
.obsidian/plugins/omnisearch/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "omnisearch",
"name": "Omnisearch",
"version": "1.9.0",
"minAppVersion": "1.0.0",
"description": "A search engine that just works",
"author": "Simon Cambier",
"authorUrl": "https://github.com/scambier/obsidian-omnisearch",
"isDesktopOnly": false
}

53
.obsidian/plugins/omnisearch/styles.css vendored Normal file
View File

@@ -0,0 +1,53 @@
.omnisearch-modal {
}
.omnisearch-result {
white-space: normal;
display: flex;
flex-direction: column;
}
.omnisearch-result__title {
}
.omnisearch-result__counter {
font-size: 0.7rem;
}
.omnisearch-result__body {
white-space: normal;
font-size: small;
word-wrap: normal;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
color: var(--text-muted);
}
.omnisearch-highlight {
}
.omnisearch-default-highlight {
color: var(--text-normal);
background-color: var(--text-highlight-bg);
}
.omnisearch-input-container {
display: flex;
flex-direction: row;
gap: 5px;
}
@media only screen and (max-width: 600px) {
.omnisearch-input-container {
flex-direction: column;
}
}
.omnisearch-input-field {
position: relative;
flex-grow: 1;
}