This commit is contained in:
oscar.plaisant@icloud.com
2023-10-23 23:30:51 +02:00
parent 95f9cde0c2
commit 717479f658
3433 changed files with 1756195 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,9 @@
{
"id": "obsidian-query-language",
"name": "Obsidian Query Language",
"version": "2.1.1",
"description": "This plugin allows you to query notes and represent data within Obsidian",
"author": "Joost Plattel",
"authorUrl": "https://jplattel.nl",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,39 @@
/* OQL badge to show this is the result */
.oql-badge::before{
content: "OQL";
background-color: #d1ecf1;
border-radius: 5px;
color: #0c5460;
border-color: #bee5eb;
border: 1px solid;
font-size: 11px;
margin-top: 0px;
min-width: 20px;
padding: 2px;
margin-right: 10px;
position: absolute;
text-align: center;
right: 0px;
}
.oql-debug {
max-height: 250px;
overflow-y: scroll;
}
.oql-error {
padding: 10px;
border-radius: 3px;
color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
}
.oql-warning {
padding: 10px;
border-radius: 3px;
color: #945a13;
background-color: #e1dcb1;
border-color: #ffc814;
margin-bottom: 10px
}