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
|
||||
}
|
||||
}
|
||||
3
content/.obsidian/appearance.json
vendored
3
content/.obsidian/appearance.json
vendored
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"theme": "moonstone"
|
||||
}
|
||||
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;
|
||||
}
|
||||
255
content/.obsidian/workspace.json
vendored
255
content/.obsidian/workspace.json
vendored
@@ -1,255 +0,0 @@
|
||||
{
|
||||
"main": {
|
||||
"id": "19179b278823b064",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "167a802aa161f7e7",
|
||||
"type": "tabs",
|
||||
"dimension": 38.71975019516003,
|
||||
"children": [
|
||||
{
|
||||
"id": "6be8a23612495802",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Biokemi/Cellulära processer/DNA replikation/Anteckningar.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "Anteckningar"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "6ce2195cbdc1aa8d",
|
||||
"type": "tabs",
|
||||
"dimension": 61.28024980483997,
|
||||
"children": [
|
||||
{
|
||||
"id": "66d1a84367288975",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Biokemi/Cellulära processer/DNA replikation/Stoff.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "Stoff"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
},
|
||||
"left": {
|
||||
"id": "70dc58e919eddd95",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "47a30d427cdfb6db",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "3eadd732417e81df",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "file-explorer",
|
||||
"state": {
|
||||
"sortOrder": "alphabetical",
|
||||
"autoReveal": false
|
||||
},
|
||||
"icon": "lucide-folder-closed",
|
||||
"title": "Files"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "2e4a8a51eb03bd6b",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "search",
|
||||
"state": {
|
||||
"query": "",
|
||||
"matchingCase": false,
|
||||
"explainSearch": false,
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical"
|
||||
},
|
||||
"icon": "lucide-search",
|
||||
"title": "Search"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "591b7f92ddc7ac6e",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "bookmarks",
|
||||
"state": {},
|
||||
"icon": "lucide-bookmark",
|
||||
"title": "Bookmarks"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 285.5024719238281
|
||||
},
|
||||
"right": {
|
||||
"id": "0948c66181b40af9",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "8e42749b81d80f27",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "e5aef8df0156336c",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "Biokemi/Enzymer/Anteckningar.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-coming-in",
|
||||
"title": "Backlinks for Anteckningar"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "131da419ce467615",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "Histologi/Demokompendium/Preparattabell.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-going-out",
|
||||
"title": "Outgoing links from Preparattabell"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "5c1804c056cc2e31",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "tag",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"useHierarchy": true,
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-tags",
|
||||
"title": "Tags"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "d4a03ebd29e7b96c",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "Histologi/Demokompendium/Preparattabell.md",
|
||||
"followCursor": false,
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-list",
|
||||
"title": "Outline of Preparattabell"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "10341d1503d8d1c5",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "git-view",
|
||||
"state": {},
|
||||
"icon": "git-pull-request",
|
||||
"title": "Source Control"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 4
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 200,
|
||||
"collapsed": true
|
||||
},
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
"switcher:Open quick switcher": false,
|
||||
"graph:Open graph view": false,
|
||||
"canvas:Create new canvas": false,
|
||||
"daily-notes:Open today's daily note": false,
|
||||
"templates:Insert template": false,
|
||||
"command-palette:Open command palette": false,
|
||||
"bases:Create new base": false,
|
||||
"obsidian-git:Open Git source control": false
|
||||
}
|
||||
},
|
||||
"active": "66d1a84367288975",
|
||||
"lastOpenFiles": [
|
||||
"Biokemi/Cellulära processer/Initiering och terminering av DNA replikation/Lärandemål.md",
|
||||
"Biokemi/Cellulära processer/Initiering och terminering av DNA replikation/Provfrågor.md",
|
||||
"Biokemi/Cellulära processer/Initiering och terminering av DNA replikation/Instuderingsfrågor.md",
|
||||
"Biokemi/Cellulära processer/Initiering och terminering av DNA replikation/Anteckningar.md",
|
||||
"Biokemi/Cellulära processer/DNA replikation/Stoff.md",
|
||||
"Biokemi/Cellulära processer/DNA replikation/Anteckningar.md",
|
||||
"Biokemi/Cellulära processer/DNA replikation/Provfrågor.md",
|
||||
"Biokemi/Cellulära processer/DNA replikation/Lärandemål.md",
|
||||
"Biokemi/Cellulära processer/DNA replikation/Instuderingsfrågor.md",
|
||||
"Biokemi/Cellulära processer/RNA syntes/Anteckningar.md",
|
||||
"Biokemi/Cellulära processer/RNA syntes/Stoff.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 20251121114507.png",
|
||||
"attachments/Pasted image 20251121114215.png",
|
||||
"attachments/Pasted image 20251121113406.png",
|
||||
"attachments/Pasted image 20251121113046.png",
|
||||
"attachments/Pasted image 20251121113014.png",
|
||||
"attachments/Pasted image 20251121112518.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",
|
||||
"Biokemi/index.md",
|
||||
"Biokemi.md",
|
||||
"Biokemi/Proteinseminarie/Stödord.md",
|
||||
"Anatomi.md",
|
||||
"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