mirror of
https://github.com/danbulant/notes
synced 2026-06-17 13:31:12 +00:00
vault backup: 2021-11-01 21:01:29
This commit is contained in:
parent
b3dee2ab9e
commit
ac438a073e
45 changed files with 103991 additions and 6674 deletions
7
notes/.obsidian/community-plugins.json
vendored
7
notes/.obsidian/community-plugins.json
vendored
|
|
@ -22,5 +22,10 @@
|
|||
"wikilinks-to-mdlinks-obsidian",
|
||||
"obsidian-outliner",
|
||||
"obsidian-chartsview-plugin",
|
||||
"obsidian-codemirror-options"
|
||||
"obsidian-codemirror-options",
|
||||
"obsidian-excalidraw-plugin",
|
||||
"obsidian-activity-history",
|
||||
"juggl",
|
||||
"zoottelkeeper-obsidian-plugin",
|
||||
"folder-note-plugin"
|
||||
]
|
||||
9281
notes/.obsidian/plugins/folder-note-plugin/main.js
vendored
Normal file
9281
notes/.obsidian/plugins/folder-note-plugin/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
notes/.obsidian/plugins/folder-note-plugin/manifest.json
vendored
Normal file
10
notes/.obsidian/plugins/folder-note-plugin/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"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
|
||||
}
|
||||
229
notes/.obsidian/plugins/folder-note-plugin/styles.css
vendored
Normal file
229
notes/.obsidian/plugins/folder-note-plugin/styles.css
vendored
Normal file
|
|
@ -0,0 +1,229 @@
|
|||
/* 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;
|
||||
}
|
||||
75
notes/.obsidian/plugins/juggl/data.json
vendored
Normal file
75
notes/.obsidian/plugins/juggl/data.json
vendored
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
{
|
||||
"password": "",
|
||||
"splitDirection": "vertical",
|
||||
"typedLinkPrefix": "-",
|
||||
"imgServerPort": 3837,
|
||||
"debug": false,
|
||||
"globalStyleGroups": [],
|
||||
"globalGraphRibbon": true,
|
||||
"graphSettings": {
|
||||
"autoAddNodes": true,
|
||||
"autoExpand": false,
|
||||
"autoZoom": true,
|
||||
"coreStore": "Obsidian",
|
||||
"expandInitial": true,
|
||||
"fdgdLayout": "d3-force",
|
||||
"filter": "",
|
||||
"height": "100%",
|
||||
"hoverEdges": false,
|
||||
"layout": "force-directed",
|
||||
"limit": 10000,
|
||||
"mergeEdges": true,
|
||||
"metaKeyHover": false,
|
||||
"mode": "workspace",
|
||||
"navigator": true,
|
||||
"openWithShift": false,
|
||||
"styleGroups": [],
|
||||
"toolbar": true,
|
||||
"width": "100%",
|
||||
"zoomSpeed": 1
|
||||
},
|
||||
"embedSettings": {
|
||||
"autoAddNodes": false,
|
||||
"autoExpand": false,
|
||||
"autoZoom": false,
|
||||
"coreStore": "Obsidian",
|
||||
"expandInitial": true,
|
||||
"fdgdLayout": "cola",
|
||||
"filter": "",
|
||||
"height": "400px",
|
||||
"hoverEdges": false,
|
||||
"layout": "force-directed",
|
||||
"limit": 1000,
|
||||
"mergeEdges": true,
|
||||
"metaKeyHover": false,
|
||||
"mode": "local",
|
||||
"navigator": false,
|
||||
"openWithShift": false,
|
||||
"styleGroups": [],
|
||||
"toolbar": false,
|
||||
"width": "100%",
|
||||
"zoomSpeed": 1
|
||||
},
|
||||
"globalGraphSettings": {
|
||||
"autoAddNodes": true,
|
||||
"autoExpand": false,
|
||||
"autoZoom": true,
|
||||
"coreStore": "Obsidian",
|
||||
"expandInitial": false,
|
||||
"fdgdLayout": "cola",
|
||||
"filter": "-class:dangling -class:file",
|
||||
"height": "100%",
|
||||
"width": "100%",
|
||||
"limit": 10000,
|
||||
"hoverEdges": false,
|
||||
"layout": "force-directed",
|
||||
"mergeEdges": true,
|
||||
"metaKeyHover": false,
|
||||
"mode": "workspace",
|
||||
"navigator": true,
|
||||
"openWithShift": false,
|
||||
"styleGroups": [],
|
||||
"toolbar": true,
|
||||
"zoomSpeed": 1
|
||||
}
|
||||
}
|
||||
2
notes/.obsidian/plugins/juggl/graph.css
vendored
Normal file
2
notes/.obsidian/plugins/juggl/graph.css
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
|
||||
/* For a full overview of styling options, see https://js.cytoscape.org/#style */
|
||||
79139
notes/.obsidian/plugins/juggl/main.js
vendored
Normal file
79139
notes/.obsidian/plugins/juggl/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
notes/.obsidian/plugins/juggl/manifest.json
vendored
Normal file
10
notes/.obsidian/plugins/juggl/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "juggl",
|
||||
"name": "Juggl",
|
||||
"version": "1.1.1",
|
||||
"minAppVersion": "0.11.5",
|
||||
"description": "Adds a completely interactive, stylable and expandable graph view to Obsidian.",
|
||||
"author": "Emile",
|
||||
"authorUrl": "https://twitter.com/emilevankrieken",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
209
notes/.obsidian/plugins/juggl/styles.css
vendored
Normal file
209
notes/.obsidian/plugins/juggl/styles.css
vendored
Normal file
|
|
@ -0,0 +1,209 @@
|
|||
div.neovis_setting {
|
||||
width: content-box;
|
||||
}
|
||||
|
||||
div.cxtmenu-item {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/*.cytoscape-navigatorView,*/
|
||||
div.cy-navigator {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
position: fixed;
|
||||
z-index: 3;
|
||||
bottom: 10px;
|
||||
right: 27px;
|
||||
border: #828282 1px solid;
|
||||
border-radius: 2px;
|
||||
background-color: rgba(130, 130, 130, 0.1);
|
||||
cursor: default;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div.juggl-error {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
|
||||
.cy-navigator > img{
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 0;
|
||||
opacity: 0.8;
|
||||
|
||||
}
|
||||
.cytoscape-navigatorView{
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
cursor: move;
|
||||
background: #828282;
|
||||
-moz-opacity: 0.20;
|
||||
opacity: 0.20;
|
||||
width: 50%;
|
||||
height: 50%;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.cytoscape-navigatorOverlay{
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 103;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.juggl-hover {
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.juggl-preview-edge {
|
||||
height: 140px !important;
|
||||
}
|
||||
|
||||
.cy-content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.cy-toolbar {
|
||||
position: relative;
|
||||
left: 8px;
|
||||
top: 8px;
|
||||
width: fit-content;
|
||||
max-width: inherit;
|
||||
height: 0;
|
||||
margin: 2px;
|
||||
margin-block-start: 0;
|
||||
margin-block-end: 0;
|
||||
z-index: 1000;
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
.cy-toolbar-section {
|
||||
width: fit-content;
|
||||
text-align: center;
|
||||
background-color: var(--background-primary);
|
||||
display: inline-block;
|
||||
margin: 1px;
|
||||
padding: 1px;
|
||||
border-color: var(--background-modifier-border);
|
||||
border-radius: 4px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
opacity: 1;
|
||||
}
|
||||
.cy-toolbar > input[type='text'] {
|
||||
font-size: var(--font-small);
|
||||
background-color: var(--background-secondary);
|
||||
height: 30px;
|
||||
padding: 5px 7px;
|
||||
}
|
||||
|
||||
|
||||
button.juggl-button {
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
text-align: center;
|
||||
background-color: var(--background-secondary);
|
||||
padding: 0;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
|
||||
.cy-toolbar-section > button:disabled {
|
||||
background: var(--background-primary);
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
button.juggl-button > svg > path {
|
||||
fill: var(--text-muted);
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
button.juggl-button:hover > svg > path {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
button.juggl-button:disabled > svg > path {
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
button.juggl-button-pane {
|
||||
background: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
|
||||
|
||||
div.juggl-list-text {
|
||||
font-size: var(--font-small);
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
div.juggl-style-group {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
padding-bottom: 6px;
|
||||
padding-top: 6px;
|
||||
border-bottom: 1px solid var(--background-modifier-border-focus);
|
||||
}
|
||||
|
||||
div.juggl-style-group-hidden {
|
||||
width: auto;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
div.juggl-nodes-pane,
|
||||
div.juggl-style-pane {
|
||||
overflow-y: auto;
|
||||
padding: 0 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.break {
|
||||
flex-basis: 100%;
|
||||
height: 3px;
|
||||
}
|
||||
|
||||
/* Use a collapsed column to break to a new column */
|
||||
.break-column {
|
||||
flex-basis: 100%;
|
||||
width: 0;
|
||||
}
|
||||
.react-icon {
|
||||
display: inline-flex;
|
||||
width: 24px;
|
||||
box-sizing: content-box;
|
||||
height: 24px;
|
||||
stroke-width: 0;
|
||||
}
|
||||
.react-icon > svg {
|
||||
vertical-align: top;
|
||||
line-height: 0;
|
||||
font-size: 0;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.juggl-icon-picker > .suggestion-item {
|
||||
height: auto;
|
||||
min-height: 24px;
|
||||
}
|
||||
|
||||
button.juggl-icon-button {
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.juggl-style-pane-left {
|
||||
display: inline-flex;
|
||||
width: 50px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
|
@ -12,8 +12,8 @@
|
|||
"checkpointList": [
|
||||
{
|
||||
"path": "/",
|
||||
"date": "2021-10-25",
|
||||
"size": 57099
|
||||
"date": "2021-11-01",
|
||||
"size": 71879
|
||||
}
|
||||
],
|
||||
"activityHistory": [
|
||||
|
|
@ -139,6 +139,10 @@
|
|||
{
|
||||
"date": "2021-10-25",
|
||||
"value": 140
|
||||
},
|
||||
{
|
||||
"date": "2021-11-01",
|
||||
"value": 14780
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,9 +2,10 @@
|
|||
"userAdmonitions": {},
|
||||
"syntaxHighlight": false,
|
||||
"copyButton": false,
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.1",
|
||||
"autoCollapse": false,
|
||||
"defaultCollapseType": "open",
|
||||
"syncLinks": true,
|
||||
"enableMarkdownProcessor": false
|
||||
"enableMarkdownProcessor": false,
|
||||
"injectColor": true
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-admonition",
|
||||
"name": "Admonition",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.1",
|
||||
"minAppVersion": "0.11.0",
|
||||
"description": "Admonition block-styled content for Obsidian.md",
|
||||
"author": "Jeremy Valentine",
|
||||
"authorUrl": "",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@
|
|||
justify-content: center;
|
||||
margin: 0 0.5em 0 0.25em;
|
||||
min-width: 1em;
|
||||
width: min-content;
|
||||
}
|
||||
|
||||
.admonition-title-markdown {
|
||||
|
|
@ -85,7 +86,6 @@
|
|||
|
||||
details.admonition:not([open]) {
|
||||
padding-bottom: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
details.admonition > summary {
|
||||
|
|
@ -200,10 +200,45 @@ input.is-invalid {
|
|||
color: #dc3545;
|
||||
}
|
||||
|
||||
.suggestion-content.admonition-icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
flex-flow: row wrap;
|
||||
}
|
||||
|
||||
.suggestion-content.admonition-icon > .suggestion-text.admonition-text {
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.suggestion-content.admonition-icon
|
||||
> .suggestion-flair.admonition-suggester-icon {
|
||||
width: min-content;
|
||||
position: relative;
|
||||
top: unset;
|
||||
left: unset;
|
||||
right: unset;
|
||||
bottom: unset;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.suggestion-content.admonition-icon > .suggestion-note {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.admonition-suggester-icon svg {
|
||||
width: 1em;
|
||||
}
|
||||
|
||||
.admonition-color-settings .setting-item-control {
|
||||
gap: 1rem;
|
||||
}
|
||||
.admonition-color-settings input[type="color"]:disabled {
|
||||
opacity: 0.75;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
/** Internal */
|
||||
|
||||
.admonition li.task-list-item.is-checked p {
|
||||
|
|
@ -233,3 +268,4 @@ input.is-invalid {
|
|||
box-shadow: 0px 0px 5px rgb(0 0 0 / 50%);
|
||||
border-color: var(--background-modifier-border-focus);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
"allowCtrlClick": true,
|
||||
"forceWrap": false,
|
||||
"pageTransclusionCharLimit": 200,
|
||||
"iframelyAllowed": true,
|
||||
"pngExportScale": 1,
|
||||
"exportWithTheme": true,
|
||||
"exportWithBackground": true,
|
||||
|
|
@ -30,6 +31,6 @@
|
|||
"loadCount": 1,
|
||||
"drawingOpenCount": 0,
|
||||
"library": "{\"type\":\"excalidrawlib\",\"version\":1,\"library\":[]}",
|
||||
"patchCommentBlock": true,
|
||||
"patchCommentBlock": false,
|
||||
"imageElementNotice": true
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"id": "obsidian-excalidraw-plugin",
|
||||
"name": "Excalidraw",
|
||||
"version": "1.4.0",
|
||||
"minAppVersion": "0.12.0",
|
||||
"version": "1.4.4",
|
||||
"minAppVersion": "0.12.16",
|
||||
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
|
||||
"author": "Zsolt Viczian",
|
||||
"authorUrl": "https://zsolt.blog",
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
.App{font-family:sans-serif;text-align:center}.excalidraw-wrapper{height:100%;margin:0px;background-color:#fff}.context-menu-option__shortcut{background-color:transparent!important}.block-language-excalidraw{text-align:center}.excalidraw .github-corner{display:none}img.excalidraw-svg-right-wrap{float:right;margin:0px 0px 20px 20px}img.excalidraw-svg-left-wrap{float:left;margin:0px 35px 20px 0px}img.excalidraw-svg-right{float:right}img.excalidraw-svg-left{float:left}div.excalidraw-svg-right,div.excalidraw-svg-left{display:table;width:100%}button.ToolIcon_type_button[title=Export]{display:none}.excalidraw-prompt-div{display:flex;max-width:600px}.excalidraw-prompt-form{display:flex;flex-grow:1}.excalidraw-prompt-input{flex-grow:1}li[data-testid]{border:0!important;margin:0!important;padding:0!important;width:100%!important}.excalidraw .context-menu-option-separator{margin:4px!important}.excalidraw .popover{padding:0!important;border-color:transparent!important;border:0!important;box-shadow:0!important;background-color:transparent!important}.disable-zen-mode--visible{color:var(--text-primary-color)}.disable-zen-mode{width:9em!important}.ex-coffee-div{text-align:center;margin-bottom:20px}
|
||||
.App{font-family:sans-serif;text-align:center}.excalidraw-wrapper{height:100%;margin:0px;background-color:#fff}.context-menu-option__shortcut{background-color:transparent!important}.block-language-excalidraw{text-align:center}.excalidraw .github-corner{display:none}img.excalidraw-svg-right-wrap{float:right;margin:0px 0px 20px 20px}img.excalidraw-svg-left-wrap{float:left;margin:0px 35px 20px 0px}img.excalidraw-svg-right{float:right}img.excalidraw-svg-left{float:left}div.excalidraw-svg-right,div.excalidraw-svg-left{display:table;width:100%}button.ToolIcon_type_button[title=Export]{display:none}.excalidraw-prompt-div{display:flex;max-width:800px}.excalidraw-prompt-form{display:flex;flex-grow:1}.excalidraw-prompt-input{flex-grow:1}li[data-testid]{border:0!important;margin:0!important;padding:0!important;width:100%!important}.excalidraw .context-menu-option-separator{margin:4px!important}.excalidraw .popover{padding:0!important;border-color:transparent!important;border:0!important;box-shadow:0!important;background-color:transparent!important}.disable-zen-mode--visible{color:var(--text-primary-color)}.disable-zen-mode{width:9em!important}.ex-coffee-div{text-align:center;margin-bottom:20px}
|
||||
|
|
|
|||
15430
notes/.obsidian/plugins/obsidian-git/main.js
vendored
15430
notes/.obsidian/plugins/obsidian-git/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -4,5 +4,5 @@
|
|||
"description": "Backup your vault with git.",
|
||||
"isDesktopOnly": true,
|
||||
"js": "main.js",
|
||||
"version": "1.13.1"
|
||||
"version": "1.14.2"
|
||||
}
|
||||
|
|
|
|||
24
notes/.obsidian/plugins/obsidian-git/styles.css
vendored
Normal file
24
notes/.obsidian/plugins/obsidian-git/styles.css
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
@keyframes loading {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.loading > svg {
|
||||
animation: 2s linear infinite loading;
|
||||
transform-origin: 50% 50%;
|
||||
display: inline-block;
|
||||
}
|
||||
.center{
|
||||
margin: auto;
|
||||
width: 50%;
|
||||
}
|
||||
.tooltip.mod-left {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
.tooltip.mod-right {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
76
notes/.obsidian/plugins/obsidian-kanban/main.js
vendored
76
notes/.obsidian/plugins/obsidian-kanban/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "obsidian-kanban",
|
||||
"name": "Kanban",
|
||||
"version": "1.2.11",
|
||||
"version": "1.2.14",
|
||||
"minAppVersion": "0.12.3",
|
||||
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
||||
"author": "mgmeyers",
|
||||
|
|
|
|||
17
notes/.obsidian/plugins/zoottelkeeper-obsidian-plugin/data.json
vendored
Normal file
17
notes/.obsidian/plugins/zoottelkeeper-obsidian-plugin/data.json
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"indexPrefix": "",
|
||||
"indexItemStyle": "list",
|
||||
"indexTagValue": "MOC",
|
||||
"indexTagBoolean": true,
|
||||
"indexTagSeparator": ", ",
|
||||
"indexTagLabel": "tags",
|
||||
"cleanPathBoolean": true,
|
||||
"folderEmoji": ":card_index_dividers:",
|
||||
"fileEmoji": ":page_facing_up:",
|
||||
"enableEmojis": false,
|
||||
"foldersExcluded": "",
|
||||
"foldersIncluded": "",
|
||||
"sortOrder": "asc",
|
||||
"addSquareBrackets": true,
|
||||
"embedSubIndex": false
|
||||
}
|
||||
5441
notes/.obsidian/plugins/zoottelkeeper-obsidian-plugin/main.js
vendored
Normal file
5441
notes/.obsidian/plugins/zoottelkeeper-obsidian-plugin/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
notes/.obsidian/plugins/zoottelkeeper-obsidian-plugin/manifest.json
vendored
Normal file
10
notes/.obsidian/plugins/zoottelkeeper-obsidian-plugin/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "zoottelkeeper-obsidian-plugin",
|
||||
"name": "Zoottelkeeper Plugin",
|
||||
"version": "0.16.2",
|
||||
"minAppVersion": "0.12.1",
|
||||
"description": "This plugin automatically creates, maintains and tags MOCs for all your folders.",
|
||||
"author": "Akos Balasko, Micha Brugger",
|
||||
"authorUrl": "https://github.com/akosbalasko, https://github.com/michabrugger",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
15
notes/ang/ang.md
Normal file
15
notes/ang/ang.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
tags:
|
||||
- ang
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# ang
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[ang/listening|listening]]
|
||||
- [[ang/slovesa|slovesa]]
|
||||
- [[ang/Testy|Testy]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
14
notes/cjl/cjl.md
Normal file
14
notes/cjl/cjl.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
tags:
|
||||
- cjl
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# cjl
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[cjl/jména|jména]]
|
||||
- [[cjl/literatura/literatura|literatura]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
|
|
@ -3,6 +3,7 @@ tags:
|
|||
- cjl
|
||||
---
|
||||
# jména
|
||||
Jména spolužáků a jejich význam.
|
||||
|
||||
## Daniel
|
||||
|
||||
|
|
|
|||
60
notes/cjl/literatura/Cizý literatura.md
Normal file
60
notes/cjl/literatura/Cizý literatura.md
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
---
|
||||
tags:
|
||||
- cjl
|
||||
- cjl/literatura
|
||||
---
|
||||
# Cizý literatura
|
||||
## Společensko-historické pozadí
|
||||
- odehráva se v době pravěku kdy umění bylo nepsané
|
||||
- patřili sem zaříkadla, zaklínadla, příslový, pranostiky...
|
||||
- nejstarší písemné památky byly vytvořeny orientálními kulturamy (Mezopotamie, Egypt, Indie, Čína)
|
||||
|
||||
## Sumerská literatura
|
||||
- Sumeruvé vynalezli obrázkove písmo ze kterého pak vzniklo klínové
|
||||
- knihovna v Ninive s hlíněnými destičkami
|
||||
- Epos o Gilgamešovi - nejstarší dílo (1700 př.n.l)
|
||||
|
||||
## Staroegyptská literatura
|
||||
- umění starého Egypta - vznik na konci 4. tisicileti
|
||||
- Díla:
|
||||
- Vlastní životopis Sinuhetův
|
||||
- Texty pyramid
|
||||
- kniha mrtvých
|
||||
- Achnatonův hymnus na Slunce
|
||||
|
||||
## Indická literatura
|
||||
- Pákistan - Indie (mezi Indusem a Gangou) 2500 pr.n.l
|
||||
- védy = posvatné vědení (rozsahem jsou 6x vetsi nez bible)
|
||||
- védy se psali védskym jazykem a sánskrtem
|
||||
- Díla:
|
||||
- Mahábhárata - nejznámější epos
|
||||
- Rámájana - hrdinský epos
|
||||
- Kamasutra - příručka sexuálního života
|
||||
- Paňčatantra - sbírka příběhů, pohádek a bajek
|
||||
- Šakuntala
|
||||
- Oblak poslem lásky - milostná báseň
|
||||
|
||||
## Čínská literatura
|
||||
- Čínska kultura má smysl pro pečlivé zaznamenávání historie
|
||||
- Konfucius (551-479 pr.n.l) - čínský filozof a zakladatel konfucianismu
|
||||
- jeho dilo:
|
||||
- Hovory (dilo plne moralnich rad)
|
||||
- LAO-Č (6.st pr.n.l) - myslitel, zakladatel taoismu
|
||||
- Tao-te-ťing - kniha o taoismu
|
||||
- TU FU (712-770 pr.n.l) - cinsky basnik, ktery byl kriticky vuci spolecnosti
|
||||
- LI PO (701 - 762 pr.n.l) - autor versu o prirode
|
||||
|
||||
### Jiná díla
|
||||
Kniha písní - soubor čínského básnictví
|
||||
|
||||
## Perská literatura
|
||||
- vzali si útržky cizích kultur a udělali si z toho vlastní
|
||||
- Dila:
|
||||
- Avesta - sborník modliteb, mýtů, lyriky, právnickych textů, jejiž autorem je ZARATHUSTRA - filozof
|
||||
|
||||
## Arabská literatura
|
||||
- umění ktere vychází s islámu - Arabský poloostrov
|
||||
- Dila:
|
||||
- Korán - základní text islámu
|
||||
- Hadith - náboženský text o skutcích Muhammada
|
||||
- Tisíc a jedna noc - soubor lidových vyprávění princezny Šeherezády
|
||||
17
notes/cjl/literatura/literatura.md
Normal file
17
notes/cjl/literatura/literatura.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
tags:
|
||||
- cjl
|
||||
- cjl/literatura
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# literatura
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[cjl/literatura/Cizý literatura|Cizý literatura]]
|
||||
- [[cjl/literatura/poznávání žánrů|poznávání žánrů]]
|
||||
- [[cjl/literatura/Tropy a figury|Tropy a figury]]
|
||||
- [[cjl/literatura/Základní literaturní pojmy|Základní literaturní pojmy]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
35
notes/data/data.md
Normal file
35
notes/data/data.md
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
tags:
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# data
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[data/Pasted image 20210915110856.png|Pasted image 20210915110856.png]]
|
||||
- [[data/Pasted image 20210917093532.png|Pasted image 20210917093532.png]]
|
||||
- [[data/Pasted image 20210920101314.png|Pasted image 20210920101314.png]]
|
||||
- [[data/Pasted image 20211101144629.png|Pasted image 20211101144629.png]]
|
||||
- [[data/Pasted image 20211101144810.png|Pasted image 20211101144810.png]]
|
||||
- [[data/Pasted image 20211101144829.png|Pasted image 20211101144829.png]]
|
||||
- [[data/Pasted image 20211101144913.png|Pasted image 20211101144913.png]]
|
||||
- [[data/Pasted image 20211101145000.png|Pasted image 20211101145000.png]]
|
||||
- [[data/Pasted image 20211101145017.png|Pasted image 20211101145017.png]]
|
||||
- [[data/Pasted image 20211101145031.png|Pasted image 20211101145031.png]]
|
||||
- [[data/Pasted image 20211101145057.png|Pasted image 20211101145057.png]]
|
||||
- [[data/Pasted image 20211101145113.png|Pasted image 20211101145113.png]]
|
||||
- [[data/Pasted image 20211101145123.png|Pasted image 20211101145123.png]]
|
||||
- [[data/Pasted image 20211101145200.png|Pasted image 20211101145200.png]]
|
||||
- [[data/Pasted image 20211101145306.png|Pasted image 20211101145306.png]]
|
||||
- [[data/Pasted image 20211101145318.png|Pasted image 20211101145318.png]]
|
||||
- [[data/Pasted image 20211101145332.png|Pasted image 20211101145332.png]]
|
||||
- [[data/Pasted image 20211101145341.png|Pasted image 20211101145341.png]]
|
||||
- [[data/Pasted image 20211101145351.png|Pasted image 20211101145351.png]]
|
||||
- [[data/Pasted image 20211101145401.png|Pasted image 20211101145401.png]]
|
||||
- [[data/Pasted image 20211101145410.png|Pasted image 20211101145410.png]]
|
||||
- [[data/Pasted image 20211101145419.png|Pasted image 20211101145419.png]]
|
||||
- [[data/Pasted image 20211101145432.png|Pasted image 20211101145432.png]]
|
||||
- [[data/tcpudp.jpg|tcpudp.jpg]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
16
notes/dej/dej.md
Normal file
16
notes/dej/dej.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
tags:
|
||||
- dej
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# dej
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[dej/Data|Data]]
|
||||
- [[dej/moderní/moderní|moderní]]
|
||||
- [[dej/starší/starší|starší]]
|
||||
- [[dej/Úvod|Úvod]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
20
notes/dej/moderní/1. světová válka/1. světová válka.md
Normal file
20
notes/dej/moderní/1. světová válka/1. světová válka.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
tags:
|
||||
- dej/moderní/první-světová
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# 1. světová válka
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[dej/moderní/1. světová válka/Český zahraniční odboj|Český zahraniční odboj]]
|
||||
- [[dej/moderní/1. světová válka/Čeští vojáci na bojištích světové války|Čeští vojáci na bojištích světové války]]
|
||||
- [[dej/moderní/1. světová válka/František Ferdinand d`Este|František Ferdinand d`Este]]
|
||||
- [[dej/moderní/1. světová válka/Použití plynů|Použití plynů]]
|
||||
- [[dej/moderní/1. světová válka/Sarajevský atentát|Sarajevský atentát]]
|
||||
- [[dej/moderní/1. světová válka/Východní fronta|Východní fronta]]
|
||||
- [[dej/moderní/1. světová válka/Západní fronta|Západní fronta]]
|
||||
- [[dej/moderní/1. světová válka/Zbraně|Zbraně]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
15
notes/dej/moderní/moderní.md
Normal file
15
notes/dej/moderní/moderní.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
tags:
|
||||
- dej
|
||||
- dej/moderní
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# moderní
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[dej/moderní/1. světová válka/1. světová válka|1. světová válka]]
|
||||
- [[dej/moderní/1. světová válka|1. světová válka]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
18
notes/dej/starší/starší.md
Normal file
18
notes/dej/starší/starší.md
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
tags:
|
||||
- dej
|
||||
- dej/starší
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# starší
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[dej/starší/Hrad Kalich|Hrad Kalich]]
|
||||
- [[dej/starší/Jeskyně pod Býčí skálou|Jeskyně pod Býčí skálou]]
|
||||
- [[dej/starší/Stonehenge|Stonehenge]]
|
||||
- [[dej/starší/Test 11.10.|Test 11.10.]]
|
||||
- [[dej/starší/úvod|úvod]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
19
notes/ech/ech.md
Normal file
19
notes/ech/ech.md
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
tags:
|
||||
- ech
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# ech
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[ech/hmota|hmota]]
|
||||
- [[ech/Mendělejev|Mendělejev]]
|
||||
- [[ech/Názvosloví|Názvosloví]]
|
||||
- [[ech/obal atomu|obal atomu]]
|
||||
- [[ech/prvky|prvky]]
|
||||
- [[ech/radioaktivita|radioaktivita]]
|
||||
- [[ech/Vazby|Vazby]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
15
notes/ele/ele.md
Normal file
15
notes/ele/ele.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
tags:
|
||||
- ele
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# ele
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[ele/Náboj, proud, napětí a odpor|Náboj, proud, napětí a odpor]]
|
||||
- [[ele/Polovodiče|Polovodiče]]
|
||||
- [[ele/Vodiče|Vodiče]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
18
notes/fyz/fyz.md
Normal file
18
notes/fyz/fyz.md
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
tags:
|
||||
- fyz
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# fyz
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[fyz/Exponencionální zápis|Exponencionální zápis]]
|
||||
- [[fyz/Jednotky SI|Jednotky SI]]
|
||||
- [[fyz/Pohyb|Pohyb]]
|
||||
- [[fyz/Příklad|Příklad]]
|
||||
- [[fyz/Rychlost|Rychlost]]
|
||||
- [[fyz/Veličiny|Veličiny]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
15
notes/har/har.md
Normal file
15
notes/har/har.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
tags:
|
||||
- har
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# har
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[har/CPU|CPU]]
|
||||
- [[har/historie počítačů|historie počítačů]]
|
||||
- [[har/IQRF|IQRF]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
22
notes/mat/mat.md
Normal file
22
notes/mat/mat.md
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
tags:
|
||||
- mat
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# mat
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[mat/Číselné obory|Číselné obory]]
|
||||
- [[mat/Číselné soustavy|Číselné soustavy]]
|
||||
- [[mat/Druhá odmocnina|Druhá odmocnina]]
|
||||
- [[mat/Matematika|Matematika]]
|
||||
- [[mat/Množiny|Množiny]]
|
||||
- [[mat/Násobek a dělitel|Násobek a dělitel]]
|
||||
- [[mat/Příklady|Příklady]]
|
||||
- [[mat/Rozklad složených čísel na součin prvočísel|Rozklad složených čísel na součin prvočísel]]
|
||||
- [[mat/Zakrouhlení|Zakrouhlení]]
|
||||
- [[mat/Zlomky|Zlomky]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
22
notes/notes.md
Normal file
22
notes/notes.md
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# notes
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
folder: /
|
||||
noteOnly: true
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[ang/ang|ang]]
|
||||
- [[cjl/cjl|cjl]]
|
||||
- [[data/data|data]]
|
||||
- [[dej/dej|dej]]
|
||||
- [[ech/ech|ech]]
|
||||
- [[ele/ele|ele]]
|
||||
- [[fyz/fyz|fyz]]
|
||||
- [[har/har|har]]
|
||||
- [[mat/mat|mat]]
|
||||
- [[pdv/pdv|pdv]]
|
||||
- [[preamble.sty|preamble.sty]]
|
||||
- [[psi/psi|psi]]
|
||||
- [[README|README]]
|
||||
- [[učitelé/učitelé|učitelé]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
14
notes/pdv/pdv.md
Normal file
14
notes/pdv/pdv.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
tags:
|
||||
- pdv
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# pdv
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[pdv/30 let linuxu|30 let linuxu]]
|
||||
- [[pdv/Procesory AMD x Intel|Procesory AMD x Intel]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
14
notes/psi/psi.md
Normal file
14
notes/psi/psi.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
tags:
|
||||
- psi
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# psi
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[psi/Sítě|Sítě]]
|
||||
- [[psi/Základy komunikace|Základy komunikace]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
17
notes/učitelé/učitelé.md
Normal file
17
notes/učitelé/učitelé.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
tags:
|
||||
- generated
|
||||
- index
|
||||
---
|
||||
# učitelé
|
||||
```ccard
|
||||
type: folder_brief_live
|
||||
```
|
||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||
- [[učitelé/Alena Rybáková|Alena Rybáková]]
|
||||
- [[učitelé/Andrea Vlasáková|Andrea Vlasáková]]
|
||||
- [[učitelé/Aramis Tochjan|Aramis Tochjan]]
|
||||
- [[učitelé/Ivona Vítová|Ivona Vítová]]
|
||||
- [[učitelé/Ladislav Trnka|Ladislav Trnka]]
|
||||
- [[učitelé/Tomáš Tkáč|Tomáš Tkáč]]
|
||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||
Loading…
Reference in a new issue