vault backup: 2026-01-03 20:05:31
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 4m8s
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 4m8s
This commit is contained in:
144
content/.obsidian/plugins/agent-client/main.js
vendored
144
content/.obsidian/plugins/agent-client/main.js
vendored
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
|||||||
{"id":"agent-client","name":"Agent Client","version":"0.5.0-preview.2","minAppVersion":"0.15.0","description":"Chat with AI agents via the Agent Client Protocol directly from your vault.","author":"RAIT-09","authorUrl":"https://github.com/RAIT-09","fundingUrl":"https://www.buymeacoffee.com/rait09","isDesktopOnly":true}
|
{"id":"agent-client","name":"Agent Client","version":"0.5.1","minAppVersion":"0.15.0","description":"Chat with AI agents via the Agent Client Protocol directly from your vault.","author":"RAIT-09","authorUrl":"https://github.com/RAIT-09","fundingUrl":"https://www.buymeacoffee.com/rait09","isDesktopOnly":true}
|
||||||
@@ -1023,7 +1023,7 @@ If your plugin does not need CSS, delete this file.
|
|||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.agent-client-markdown-text-renderer .agent-client-markdown-rendered {
|
.agent-client-markdown-text-renderer .markdown-rendered {
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
@@ -1045,10 +1045,6 @@ If your plugin does not need CSS, delete this file.
|
|||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.agent-client-tool-call-diff-new-file {
|
|
||||||
padding: 4px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.agent-client-diff-line-info {
|
.agent-client-diff-line-info {
|
||||||
padding: 4px 12px;
|
padding: 4px 12px;
|
||||||
background-color: var(--background-secondary);
|
background-color: var(--background-secondary);
|
||||||
@@ -1058,23 +1054,44 @@ If your plugin does not need CSS, delete this file.
|
|||||||
}
|
}
|
||||||
|
|
||||||
.agent-client-diff-line {
|
.agent-client-diff-line {
|
||||||
padding: 2px 12px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
user-select: text;
|
user-select: text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.agent-client-diff-line-number {
|
||||||
|
display: inline-block;
|
||||||
|
width: 40px;
|
||||||
|
padding: 2px 8px;
|
||||||
|
text-align: right;
|
||||||
|
flex-shrink: 0;
|
||||||
|
color: var(--text-muted);
|
||||||
|
user-select: none;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.agent-client-diff-line-number-old {
|
||||||
|
border-right: 1px solid var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
|
||||||
|
.agent-client-diff-line-number-new {
|
||||||
|
border-right: 1px solid var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
|
||||||
.agent-client-diff-line-marker {
|
.agent-client-diff-line-marker {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
|
padding: 2px 4px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.agent-client-diff-line-content {
|
.agent-client-diff-line-content {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
padding: 2px 12px;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
@@ -1095,6 +1112,37 @@ If your plugin does not need CSS, delete this file.
|
|||||||
color: var(--color-red);
|
color: var(--color-red);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.agent-client-diff-line-context {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.agent-client-diff-line-context .agent-client-diff-line-marker {
|
||||||
|
color: var(--text-faint);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hunk header styling */
|
||||||
|
.agent-client-diff-hunk-header {
|
||||||
|
padding: 4px 12px;
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
color: var(--text-muted);
|
||||||
|
font-size: 11px;
|
||||||
|
border-top: 1px solid var(--background-modifier-border);
|
||||||
|
border-bottom: 1px solid var(--background-modifier-border);
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Word-level diff highlighting */
|
||||||
|
.agent-client-diff-word-added {
|
||||||
|
background-color: rgba(46, 160, 67, 0.4);
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.agent-client-diff-word-removed {
|
||||||
|
background-color: rgba(248, 81, 73, 0.4);
|
||||||
|
font-weight: 600;
|
||||||
|
text-decoration: line-through;
|
||||||
|
}
|
||||||
|
|
||||||
/* Tool Call Details */
|
/* Tool Call Details */
|
||||||
.agent-client-tool-call-read-details,
|
.agent-client-tool-call-read-details,
|
||||||
.agent-client-tool-call-edit-details,
|
.agent-client-tool-call-edit-details,
|
||||||
|
|||||||
BIN
content/Anatomi & Histologi 2/7 CNS cerebrum/2 a+b CNS Cerebrum T1.pdf
LFS
Normal file
BIN
content/Anatomi & Histologi 2/7 CNS cerebrum/2 a+b CNS Cerebrum T1.pdf
LFS
Normal file
Binary file not shown.
19
content/Anatomi & Histologi 2/7 CNS cerebrum/Anteckningar.md
Normal file
19
content/Anatomi & Histologi 2/7 CNS cerebrum/Anteckningar.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
Cerebrum består av
|
||||||
|
→ Cortex
|
||||||
|
→ Substana Alba
|
||||||
|
→ Nuclei basales (aka basala ganglier)
|
||||||
|
|
||||||
|
|
||||||
|
| | | | |
|
||||||
|
| --------------- | ----------------------- | --- | ------ |
|
||||||
|
| Cortex | Bark | Grå | Veckad |
|
||||||
|
| Substantia alba | | Vit | |
|
||||||
|
| Nuclei basales | Basala gangleier/kärnor | Grå | Kärnor |
|
||||||
|
Veckad ger större volym, fler synapser, mer funktion, utan större hjärna
|
||||||
|
|
||||||
|
- sulkus/sulci (fåra)
|
||||||
|
- gyrus/guri (vindling)
|
||||||
|
|
||||||
|
## Repetition
|
||||||
|
Grå = någon slags funktion sitter där
|
||||||
BIN
content/Anatomi & Histologi 2/8 CNS diencephalon/3 CNS Diencephalon T1.pdf
LFS
Normal file
BIN
content/Anatomi & Histologi 2/8 CNS diencephalon/3 CNS Diencephalon T1.pdf
LFS
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
content/Anatomi & Histologi 2/9 CNS truncus encephali/6 CNS Cerebellum T1.pdf
LFS
Normal file
BIN
content/Anatomi & Histologi 2/9 CNS truncus encephali/6 CNS Cerebellum T1.pdf
LFS
Normal file
Binary file not shown.
Reference in New Issue
Block a user