remove .obsidian
This commit is contained in:
11
content/.obsidian/app.json
vendored
11
content/.obsidian/app.json
vendored
@@ -1,11 +0,0 @@
|
|||||||
{
|
|
||||||
"alwaysUpdateLinks": true,
|
|
||||||
"promptDelete": false,
|
|
||||||
"attachmentFolderPath": "attachments",
|
|
||||||
"pdfExportSettings": {
|
|
||||||
"pageSize": "Letter",
|
|
||||||
"landscape": false,
|
|
||||||
"margin": "0",
|
|
||||||
"downscalePercent": 100
|
|
||||||
}
|
|
||||||
}
|
|
||||||
4
content/.obsidian/community-plugins.json
vendored
4
content/.obsidian/community-plugins.json
vendored
@@ -1,4 +0,0 @@
|
|||||||
[
|
|
||||||
"folder-note-plugin",
|
|
||||||
"obsidian-git"
|
|
||||||
]
|
|
||||||
33
content/.obsidian/core-plugins.json
vendored
33
content/.obsidian/core-plugins.json
vendored
@@ -1,33 +0,0 @@
|
|||||||
{
|
|
||||||
"file-explorer": true,
|
|
||||||
"global-search": true,
|
|
||||||
"switcher": true,
|
|
||||||
"graph": true,
|
|
||||||
"backlink": true,
|
|
||||||
"canvas": true,
|
|
||||||
"outgoing-link": true,
|
|
||||||
"tag-pane": true,
|
|
||||||
"footnotes": false,
|
|
||||||
"properties": false,
|
|
||||||
"page-preview": true,
|
|
||||||
"daily-notes": true,
|
|
||||||
"templates": true,
|
|
||||||
"note-composer": true,
|
|
||||||
"command-palette": true,
|
|
||||||
"slash-command": false,
|
|
||||||
"editor-status": true,
|
|
||||||
"bookmarks": true,
|
|
||||||
"markdown-importer": false,
|
|
||||||
"zk-prefixer": false,
|
|
||||||
"random-note": false,
|
|
||||||
"outline": true,
|
|
||||||
"word-count": true,
|
|
||||||
"slides": false,
|
|
||||||
"audio-recorder": false,
|
|
||||||
"workspaces": false,
|
|
||||||
"file-recovery": true,
|
|
||||||
"publish": false,
|
|
||||||
"sync": true,
|
|
||||||
"bases": true,
|
|
||||||
"webviewer": false
|
|
||||||
}
|
|
||||||
22
content/.obsidian/graph.json
vendored
22
content/.obsidian/graph.json
vendored
@@ -1,22 +0,0 @@
|
|||||||
{
|
|
||||||
"collapse-filter": true,
|
|
||||||
"search": "",
|
|
||||||
"showTags": false,
|
|
||||||
"showAttachments": false,
|
|
||||||
"hideUnresolved": false,
|
|
||||||
"showOrphans": true,
|
|
||||||
"collapse-color-groups": true,
|
|
||||||
"colorGroups": [],
|
|
||||||
"collapse-display": true,
|
|
||||||
"showArrow": false,
|
|
||||||
"textFadeMultiplier": 0,
|
|
||||||
"nodeSizeMultiplier": 1,
|
|
||||||
"lineSizeMultiplier": 1,
|
|
||||||
"collapse-forces": true,
|
|
||||||
"centerStrength": 0.518713248970312,
|
|
||||||
"repelStrength": 10,
|
|
||||||
"linkStrength": 1,
|
|
||||||
"linkDistance": 250,
|
|
||||||
"scale": 0.5943143512528389,
|
|
||||||
"close": false
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"folderNoteHide": true,
|
|
||||||
"folderNoteType": "index",
|
|
||||||
"folderNoteName": "index",
|
|
||||||
"folderNoteKey": "ctrl",
|
|
||||||
"folderNoteAutoRename": true,
|
|
||||||
"folderDelete2Note": false,
|
|
||||||
"folderNoteStrInit": "# {{FOLDER_NAME}} Overview\n {{FOLDER_BRIEF_LIVE}} \n"
|
|
||||||
}
|
|
||||||
9283
content/.obsidian/plugins/folder-note-plugin/main.js
vendored
9283
content/.obsidian/plugins/folder-note-plugin/main.js
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"id": "folder-note-plugin",
|
|
||||||
"name": "Folder Note",
|
|
||||||
"version": "0.7.3",
|
|
||||||
"minAppVersion": "0.9.12",
|
|
||||||
"description": "Click a folder node to show a note describing the folder.",
|
|
||||||
"author": "xpgo",
|
|
||||||
"authorUrl": "https://github.com/xpgo/obsidian-folder-note",
|
|
||||||
"isDesktopOnly": false
|
|
||||||
}
|
|
||||||
@@ -1,229 +0,0 @@
|
|||||||
/* hide the folder note file node */
|
|
||||||
div.is-folder-note {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* indicate the folder has note */
|
|
||||||
div.has-folder-note {
|
|
||||||
color: var(--text-nav-selected);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*---------------------------------------------
|
|
||||||
Cute card view
|
|
||||||
-----------------------------------------------*/
|
|
||||||
|
|
||||||
.cute-card-band {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 900px;
|
|
||||||
margin: 0 auto;
|
|
||||||
margin-top: 15px;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 1fr;
|
|
||||||
grid-template-rows: auto;
|
|
||||||
grid-gap: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 30em) {
|
|
||||||
.cute-card-band {
|
|
||||||
grid-template-columns: 1fr 1fr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 60em) {
|
|
||||||
.cute-card-band {
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view {
|
|
||||||
background: var(--background-accent);
|
|
||||||
text-decoration: none !important;
|
|
||||||
color: var(--text-normal);
|
|
||||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: 100%;
|
|
||||||
position: relative;
|
|
||||||
top: 0;
|
|
||||||
transition: all 0.1s ease-in;
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view:hover {
|
|
||||||
top: -2px;
|
|
||||||
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view article {
|
|
||||||
padding: 15px;
|
|
||||||
flex: 1;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view h1 {
|
|
||||||
font-size: 1.2rem;
|
|
||||||
margin: 0;
|
|
||||||
color: var(--text-accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view p {
|
|
||||||
flex: 1;
|
|
||||||
line-height: 1.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view span {
|
|
||||||
font-size: 0.8rem;
|
|
||||||
font-weight: bold;
|
|
||||||
color: var(--text-faint);
|
|
||||||
letter-spacing: 0.05em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view .thumb {
|
|
||||||
padding-bottom: 60%;
|
|
||||||
background-size: cover;
|
|
||||||
background-position: center center;
|
|
||||||
border-radius: 10px 10px 0px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view .thumb-color {
|
|
||||||
padding-bottom: 10%;
|
|
||||||
background-size: cover;
|
|
||||||
background-position: center center;
|
|
||||||
border-radius: 10px 10px 0px 0px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: center;
|
|
||||||
color: #FFFFFF;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view .thumb-color-folder {
|
|
||||||
background-color: slateblue;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cute-card-view .thumb-color-note {
|
|
||||||
background-color: salmon;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------
|
|
||||||
strip card view
|
|
||||||
-----------------------------------------------*/
|
|
||||||
|
|
||||||
.strip-card-band {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
margin-top: 1.0rem;
|
|
||||||
margin-bottom: 1.0rem;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-orient: horizontal;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-box-align: stretch;
|
|
||||||
-webkit-align-items: stretch;
|
|
||||||
-ms-flex-align: stretch;
|
|
||||||
align-items: stretch;
|
|
||||||
min-height: 8rem;
|
|
||||||
-webkit-border-radius: 10px;
|
|
||||||
border-radius: 10px;
|
|
||||||
overflow: hidden;
|
|
||||||
-webkit-transition: all .3s ease;
|
|
||||||
-o-transition: all .3s ease;
|
|
||||||
transition: all .3s ease;
|
|
||||||
-webkit-box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
|
|
||||||
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
|
|
||||||
/* add by xpgo */
|
|
||||||
background: var(--background-accent);
|
|
||||||
text-decoration: none !important;
|
|
||||||
color: var(--text-normal);
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view:hover {
|
|
||||||
-webkit-transform: translate(0px, -2px);
|
|
||||||
-ms-transform: translate(0px, -2px);
|
|
||||||
transform: translate(0px, -2px);
|
|
||||||
-webkit-box-shadow: 0 15px 45px -10px rgba(10, 16, 34, 0.2);
|
|
||||||
box-shadow: 0 15px 45px -10px rgba(10, 16, 34, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view .thumb {
|
|
||||||
width: 20%;
|
|
||||||
max-width: 100%;
|
|
||||||
min-height: 9rem;
|
|
||||||
-webkit-background-size: cover;
|
|
||||||
background-size: cover;
|
|
||||||
background-position: 50% 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view .thumb-color {
|
|
||||||
width: 20%;
|
|
||||||
max-width: 100%;
|
|
||||||
min-height: 9rem;
|
|
||||||
-webkit-background-size: cover;
|
|
||||||
background-size: cover;
|
|
||||||
background-position: center center;
|
|
||||||
/* add by xpgo */
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
padding: 10px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: center;
|
|
||||||
color: #FFFFFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view .thumb-color-folder {
|
|
||||||
background-color: slateblue;
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view .thumb-color-note {
|
|
||||||
background-color: salmon;
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view article {
|
|
||||||
padding: 1rem;
|
|
||||||
width: 80%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view h1 {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
margin: 0 0 10px;
|
|
||||||
color: var(--text-accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view p {
|
|
||||||
margin-top: 0;
|
|
||||||
flex: 1;
|
|
||||||
line-height: 1.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.strip-card-view span {
|
|
||||||
font-size: 0.8rem;
|
|
||||||
font-weight: bold;
|
|
||||||
color: var(--text-faint);
|
|
||||||
letter-spacing: 0.05em;
|
|
||||||
}
|
|
||||||
89
content/.obsidian/workspace.json
vendored
89
content/.obsidian/workspace.json
vendored
@@ -12,14 +12,10 @@
|
|||||||
"id": "6be8a23612495802",
|
"id": "6be8a23612495802",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "empty",
|
||||||
"state": {
|
"state": {},
|
||||||
"file": "Anatomi & Histologi/Histologi/Brosk/Perikondrium.md",
|
|
||||||
"mode": "source",
|
|
||||||
"source": false
|
|
||||||
},
|
|
||||||
"icon": "lucide-file",
|
"icon": "lucide-file",
|
||||||
"title": "Perikondrium"
|
"title": "New tab"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -100,7 +96,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "horizontal",
|
"direction": "horizontal",
|
||||||
"width": 285.5024719238281
|
"width": 345.5024719238281
|
||||||
},
|
},
|
||||||
"right": {
|
"right": {
|
||||||
"id": "0948c66181b40af9",
|
"id": "0948c66181b40af9",
|
||||||
@@ -202,25 +198,45 @@
|
|||||||
"obsidian-git:Open Git source control": false
|
"obsidian-git:Open Git source control": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "3eadd732417e81df",
|
"active": "10341d1503d8d1c5",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
"Anatomi & Histologi/Histologi/Brosk/Kondroprogenitor.md",
|
"attachments/Pasted image 20251027205207.png",
|
||||||
"Anatomi & Histologi/Histologi/Brosk/Kondroblast.md",
|
"attachments/Pasted image 20251027185923.png",
|
||||||
"Anatomi & Histologi/Histologi/Brosk/Hyalint Brosk.md",
|
"Studieteknik/Minnespalats.md",
|
||||||
"Anatomi & Histologi/Histologi/index.md",
|
"Målbeskrivning/Plan.md",
|
||||||
"Biokemi/Cellulära processer/DNA replikation/Anteckningar.md",
|
"Målbeskrivning/Alla mål.md",
|
||||||
"Biokemi/Cellulära processer/DNA replikation/Provfrågor.md",
|
"Målbeskrivning",
|
||||||
"Biokemi/Cellulära processer/Initiering och terminering av DNA replikation/Provfrågor.md",
|
"Instuderingsfrågor/index.md",
|
||||||
"Biokemi/Cellulära processer/Initiering och terminering av DNA replikation/Instuderingsfrågor.md",
|
"Instuderingsfrågor/Zoom meeting.md",
|
||||||
"Biokemi/Cellulära processer/Initiering och terminering av DNA replikation/Lärandemål.md",
|
"Instuderingsfrågor/1.2 Hjärta och cirkulation.md",
|
||||||
"Biokemi/Cellulära processer/DNA replikation/Stoff.md",
|
"Instuderingsfrågor/1.1 Rörelseapparaten.md",
|
||||||
"Biokemi/Cellulära processer/RNA syntes/Stoff.md",
|
"Instuderingsfrågor",
|
||||||
"Biokemi/Cellulära processer/DNA replikation/Lärandemål.md",
|
"Biokemi/Metabolism/Termodynamik/Thermodynamik_MO-5.pdf",
|
||||||
|
"Biokemi/Metabolism/Termodynamik/Instuderingsfrågor termodynamik-4.pdf",
|
||||||
|
"Biokemi/Metabolism/Termodynamik/Biochemistry 10th edition kap 5.1.pdf",
|
||||||
|
"Biokemi/Metabolism/Termodynamik/Biochemistry 10th edition kap 1 12-15.pdf",
|
||||||
|
"Biokemi/Metabolism/Termodynamik/Biochemistry 10th edition 449-456.pdf",
|
||||||
|
"Biokemi/Metabolism/Enzymer/Instuderingsfrågor enzymer-3.pdf",
|
||||||
|
"Biokemi/Metabolism/Enzymer/Enzymer_2_MO-6.pdf",
|
||||||
|
"Biokemi/Metabolism/Enzymer/Enzymer_1_MO-6.pdf",
|
||||||
|
"Biokemi/Lipider/index.md",
|
||||||
|
"Biokemi/Kemisk binding och biologiska makromolekyler/van der Waals krafter.md",
|
||||||
|
"Biokemi/Kemisk binding och biologiska makromolekyler/index.md",
|
||||||
|
"Biokemi/Kemisk binding och biologiska makromolekyler/Vätebindningar.md",
|
||||||
|
"Biokemi/Kemisk binding och biologiska makromolekyler/Syra-bas reaktioner.md",
|
||||||
|
"Biokemi/Kemisk binding och biologiska makromolekyler/Poläritet.md",
|
||||||
|
"Biokemi/Kemisk binding och biologiska makromolekyler/Kovalenta bindningar.md",
|
||||||
|
"Biokemi/Kemisk binding och biologiska makromolekyler/Jonbindningar.md",
|
||||||
|
"Biokemi/Kemisk binding och biologiska makromolekyler/Hydrofob effekt.md",
|
||||||
|
"Biokemi/! Målbeskrivning.md",
|
||||||
|
"Biokemi/index.md",
|
||||||
|
"Biokemi/Cellulära processer/RNA syntes/Chapter 29 RNA Functions, Biosynthesis, and Processing.md",
|
||||||
|
"Biokemi/Cellulära processer/Kromatin/Chapter 29 RNA Functions, Biosynthesis, and Processing.md",
|
||||||
|
"Biokemi/Cellulära processer/Translation/Video-undertexter.md",
|
||||||
|
"Biokemi/Cellulära processer/RNA syntes/Provfrågor.md",
|
||||||
|
"Biokemi/Cellulära processer/Kromatin/Instuderingsfrågor.md",
|
||||||
"Biokemi/Cellulära processer/DNA replikation/Instuderingsfrågor.md",
|
"Biokemi/Cellulära processer/DNA replikation/Instuderingsfrågor.md",
|
||||||
"Biokemi/Cellulära processer/Initiering och terminering av DNA replikation/Anteckningar.md",
|
"Biokemi/Cellulära processer/Kromatin/Stoff.md",
|
||||||
"Biokemi/Cellulära processer/RNA syntes/Anteckningar.md",
|
|
||||||
"Biokemi/Cellulära processer/RNA syntes/Lärandemål.md",
|
|
||||||
"Biokemi/Cellulära processer/RNA syntes/Instuderingsfrågor.md",
|
|
||||||
"attachments/Pasted image 20251121114559.png",
|
"attachments/Pasted image 20251121114559.png",
|
||||||
"attachments/Pasted image 20251121114507.png",
|
"attachments/Pasted image 20251121114507.png",
|
||||||
"attachments/Pasted image 20251121114215.png",
|
"attachments/Pasted image 20251121114215.png",
|
||||||
@@ -228,27 +244,6 @@
|
|||||||
"attachments/Pasted image 20251121113046.png",
|
"attachments/Pasted image 20251121113046.png",
|
||||||
"attachments/Pasted image 20251121113014.png",
|
"attachments/Pasted image 20251121113014.png",
|
||||||
"attachments/Pasted image 20251121112518.png",
|
"attachments/Pasted image 20251121112518.png",
|
||||||
"attachments/Pasted image 20251121112158.png",
|
"attachments/Pasted image 20251121112158.png"
|
||||||
"attachments/Pasted image 20251121111945.png",
|
|
||||||
"attachments/Pasted image 20251121111829.png",
|
|
||||||
"Biokemi/Cellulära processer/Kromatin/Instuderingsfrågor.md",
|
|
||||||
"Biokemi/Cellulära processer/Kromatin/Anteckningar.md",
|
|
||||||
"Biokemi/Cellulära processer/RNA syntes/Provfrågor.md",
|
|
||||||
"Biokemi/Cellulära processer/Kromatin/Stoff.md",
|
|
||||||
"Biokemi/Cellulära processer/DNA replikation",
|
|
||||||
"Biokemi/Cellulära processer/Kromatin/Provfrågor.md",
|
|
||||||
"Biokemi/Cellulära processer/Kromatin/Lärandemål.md",
|
|
||||||
"PU/Tystnadsplikt AI-svar.md",
|
|
||||||
"Biokemi/!Template/Anteckningar.md",
|
|
||||||
"index.md",
|
|
||||||
"Biokemi/Cellulära processer/Kromatin",
|
|
||||||
"Anatomi & Histologi",
|
|
||||||
"Biokemi/Cellulära processer/Translation",
|
|
||||||
"Biokemi/Cellulära processer/Kromatin",
|
|
||||||
"Biokemi/Cellulära processer/Kontroll avgenuttryck iprokaryoter",
|
|
||||||
"Biokemi/Cellulära processer/DNA replikation",
|
|
||||||
"Biokemi/Metabolism",
|
|
||||||
"Biokemi/Cellulära processer",
|
|
||||||
"Biokemi/Makromolekyler"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user