Update community plugins and enhance graph configuration
- Added 'obsidian-plantuml' plugin to community-plugins.json for diagram rendering. - Updated graph.json to enable color group collapsing and added specific color queries for primary and secondary spells. - Introduced types.json to define node types and their aliases. - Modified workspace.json to reflect new tab IDs and updated file references for better organization. - Added new markdown files detailing spells and their effects, including a comprehensive skill tree for the 'Light' node.
This commit is contained in:
7732
docs/Action Rog/.obsidian/plugins/obsidian-plantuml/main.js
vendored
Normal file
7732
docs/Action Rog/.obsidian/plugins/obsidian-plantuml/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
docs/Action Rog/.obsidian/plugins/obsidian-plantuml/manifest.json
vendored
Normal file
10
docs/Action Rog/.obsidian/plugins/obsidian-plantuml/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-plantuml",
|
||||
"name": "PlantUML",
|
||||
"version": "1.8.0",
|
||||
"minAppVersion": "1.5.7",
|
||||
"description": "Render PlantUML Diagrams",
|
||||
"author": "Johannes Theiner",
|
||||
"authorUrl": "https://github.com/joethei/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
38
docs/Action Rog/.obsidian/plugins/obsidian-plantuml/styles.css
vendored
Normal file
38
docs/Action Rog/.obsidian/plugins/obsidian-plantuml/styles.css
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
.puml-settings-area {
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
font-size: 14px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.plantuml-source-view .cm-activeLine {
|
||||
background-color: unset !important;
|
||||
}
|
||||
|
||||
.plantuml-source-view .cm-gutters {
|
||||
background-color: unset !important;
|
||||
}
|
||||
|
||||
.plantuml-source-view .cm-cursor {
|
||||
border-left: 1.2px solid var(--text-muted);
|
||||
}
|
||||
|
||||
.plantuml-source-view .cm-selectionBackground {
|
||||
background-color: var(--text-selection) !important;
|
||||
}
|
||||
|
||||
.puml-loading {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.internal-embed.file-embed[src$=".puml"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.internal-embed.file-embed[src$=".pu"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.puml-error {
|
||||
color: var(--text-error);
|
||||
}
|
||||
Reference in New Issue
Block a user