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

181
.obsidian/plugins/breadcrumbs/data.json vendored Normal file
View File

@@ -0,0 +1,181 @@
{
"addDendronNotes": true,
"addDateNotes": true,
"aliasesInIndex": false,
"alphaSortAsc": false,
"altLinkFields": [
"alias"
],
"CSVPaths": "",
"createIndexIndent": " ",
"dateFormat": "YYYY-MM-DD",
"dateNoteFormat": "yyyy-MM-dd",
"dateNoteField": "next",
"dataviewNoteField": "up",
"dateNoteAddMonth": "",
"dateNoteAddYear": "",
"debugMode": "WARN",
"dendronNoteDelimiter": ".",
"dendronNoteField": "up",
"dvWaitTime": 5000,
"enableAlphaSort": true,
"enableRelationSuggestor": true,
"fieldSuggestor": false,
"filterImpliedSiblingsOfDifferentTypes": false,
"jugglLayout": "hierarchy",
"limitWriteBCCheckboxes": [
"up",
"next",
"prev",
"author",
"source"
],
"CHECKBOX_STATES_OVERWRITTEN": false,
"gridDefaultDepth": 25,
"hierarchyNotes": [
""
],
"hierarchyNoteIsParent": false,
"HNUpField": "",
"indexNotes": [],
"namingSystemField": "",
"namingSystemRegex": "",
"namingSystemSplit": ".",
"namingSystemEndsWithDelimiter": false,
"refreshOnNoteChange": false,
"useAllMetadata": true,
"openMatrixOnLoad": true,
"openDuckOnLoad": false,
"openDownOnLoad": true,
"parseJugglLinksWithoutJuggl": false,
"showNameOrType": true,
"showRelationType": true,
"regexNoteField": "",
"relSuggestorTrigger": "@@",
"rlLeaf": false,
"showAllPathsIfNoneToIndexNote": false,
"showAllAliases": false,
"showBCs": true,
"showBCsInEditLPMode": true,
"showRefreshNotice": false,
"showImpliedRelations": true,
"showTrail": false,
"showGrid": true,
"showJuggl": false,
"showPrevNext": true,
"sortByNameShowAlias": false,
"squareDirectionsOrder": [
0,
1,
2,
3,
4
],
"limitTrailCheckboxes": [
"up",
"author",
"supports"
],
"limitJumpToFirstFields": [
"up",
"sibling",
"down",
"next",
"prev",
"same_author",
"extercept",
"includes",
"supports",
"supported_by",
"refutes",
"refuted_by"
],
"showAll": "All",
"noPathMessage": "",
"tagNoteField": "up",
"threadIntoNewPane": true,
"threadingTemplate": "{{field}} of {{current}}",
"threadingDirTemplates": {
"up": "",
"same": "",
"down": "",
"next": "",
"prev": ""
},
"threadUnderCursor": false,
"trailSeperator": "→",
"treatCurrNodeAsImpliedSibling": false,
"trimDendronNotes": true,
"respectReadableLineLength": false,
"userHiers": [
{
"up": [
"up"
],
"same": [
"sibling"
],
"down": [
"down"
],
"next": [
"next"
],
"prev": [
"prev"
]
},
{
"up": [
"author",
"source"
],
"same": [
"same_author",
"same_source"
],
"down": [
"wrote",
"excerpt",
"includes"
],
"next": [],
"prev": []
},
{
"up": [
"supports"
],
"same": [],
"down": [
"supported_by"
],
"next": [
"refutes"
],
"prev": [
"refuted_by"
]
}
],
"writeBCsInline": true,
"showWriteAllBCsCmd": false,
"visGraph": "Force Directed Graph",
"visRelation": "Parent",
"visClosed": "Closed",
"visAll": "All",
"wikilinkIndex": true,
"impliedRelations": {
"siblingIdentity": false,
"sameParentIsSibling": true,
"siblingsSiblingIsSibling": true,
"siblingsParentIsParent": false,
"parentsSiblingsIsParents": false,
"parentsParentsIsParent": false,
"cousinsIsSibling": false
},
"refreshOnNoteSave": true,
"showUpInJuggl": false,
"gridHeatmap": true,
"heatmapColour": "#3b3b3b"
}

31658
.obsidian/plugins/breadcrumbs/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "breadcrumbs",
"name": "Breadcrumbs",
"version": "3.6.4",
"minAppVersion": "0.15.2",
"description": "Visualise & navigate your vault's structure",
"author": "SkepticMystic",
"authorUrl": "https://github.com/SkepticMystic/breadcrumbs",
"isDesktopOnly": false
}

113
.obsidian/plugins/breadcrumbs/styles.css vendored Normal file
View File

@@ -0,0 +1,113 @@
.BC-trail {
border: 1px solid var(--background-modifier-border);
border-radius: 5px;
padding: 5px;
margin-bottom: 5px !important;
}
/* completely hides the trail when "no path found message" is left empty and no path is found */
.BC-trail:empty {
display: none;
}
.BC-matrix-square li {
text-align: left;
}
/* ensure empty headers not leaving an element */
.BC-Matrix .BC-Matrix-square .BC-Matrix-header:empty {
display: none;
}
.internal-link.BC-Link {
color: var(--text-accent);
}
.internal-link.BC-Link:hover {
color: var(--text-accent-hover, var(--text-accent));
}
.vis-view-options > * {
padding: 5px;
}
/* Source: https://svelte.dev/repl/3153faf7584d40bd8ddebecf39f24ac1?version=3.41.0 */
[data-tooltip] {
position: relative;
/* z-index: 2; */
/* display: block; */
}
[data-tooltip]:before,
[data-tooltip]:after {
visibility: hidden;
opacity: 0;
pointer-events: none;
transition: 0.2s ease-out;
transform: translate(-50%, 5px);
}
[data-tooltip]:before {
position: absolute;
top: 80%;
/* bottom: 100%; */
left: 50%;
margin-bottom: 5px;
padding: 7px;
width: fit-content;
height: fit-content;
min-width: 200px;
min-height: 200px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: var(--background-primary);
color: var(--text-normal);
content: attr(data-tooltip);
text-align: center;
font-size: var(--font-medium);
line-height: 1.2;
transition: 0.2s ease-out;
white-space: pre-line;
z-index: 100;
}
/* [data-tooltip]:after {
position: absolute;
top: 80%;
left: 50%;
width: 0;
border-top: 5px solid #000;
border-top: 5px solid hsla(0, 0%, 20%, 0.9);
border-right: 5px solid transparent;
border-left: 5px solid transparent;
background-color: red;
content: " ";
font-size: 0;
line-height: 0;
} */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
visibility: visible;
opacity: 1;
transform: translate(-50%, 0);
}
[data-tooltip="false"]:hover:before,
[data-tooltip="false"]:hover:after {
visibility: hidden;
opacity: 0;
}
.thread-dir-templates .setting-item-control {
display: flex;
flex-direction: column;
}
.juggl-hide {
display: none;
}
[data-type="BC-matrix"] div.view-content {
overflow: hidden !important;
}