vault backup: 2024-09-09 00:40:22

This commit is contained in:
noah cuadrado 2024-09-09 00:40:22 +02:00
commit 1ad1573a04
231 changed files with 12397 additions and 205 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
public/

0
.hugo_build.lock Normal file
View file

View file

@ -1,3 +1,3 @@
rm -rf content/* rm -rf content/docs/*
./obsidian-export/obsidian-export Edikoyo/ content/ --frontmatter always ./obsidian-export/obsidian-export Edikoyo/ content/docs --frontmatter always
git add -A content/ git add -A content/docs

View file

@ -1,3 +1,4 @@
{ {
"alwaysUpdateLinks": true "alwaysUpdateLinks": true,
"showInlineTitle": false
} }

View file

@ -4,5 +4,7 @@
"obsidian-linter", "obsidian-linter",
"dataview", "dataview",
"dataview-serializer", "dataview-serializer",
"obsidian-icon-folder" "iconic",
"ribbon-divider",
"pinned-notes"
] ]

View file

@ -17,6 +17,6 @@
"repelStrength": 10, "repelStrength": 10,
"linkStrength": 1, "linkStrength": 1,
"linkDistance": 250, "linkDistance": 250,
"scale": 0.6554983534946919, "scale": 0.655498353494692,
"close": false "close": false
} }

1229
Edikoyo/.obsidian/icons/slimes/Ababa1.svg vendored Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 71 KiB

1204
Edikoyo/.obsidian/icons/slimes/Bark1.svg vendored Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 69 KiB

1439
Edikoyo/.obsidian/icons/slimes/Garden1.svg vendored Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 83 KiB

1491
Edikoyo/.obsidian/icons/slimes/Godot1.svg vendored Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 86 KiB

1280
Edikoyo/.obsidian/icons/slimes/Honey1.svg vendored Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 74 KiB

1525
Edikoyo/.obsidian/icons/slimes/Lagoon1.svg vendored Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 87 KiB

1300
Edikoyo/.obsidian/icons/slimes/Marsh1.svg vendored Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 75 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 87 KiB

View file

@ -0,0 +1,51 @@
{
"biggerIcons": "mobile",
"clickableIcons": "desktop",
"showAllFileIcons": true,
"showAllFolderIcons": true,
"minimalFolderIcons": false,
"showItemName": "desktop",
"biggerSearchResults": "mobile",
"maxSearchResults": 50,
"colorPicker1": "list",
"colorPicker2": "rgb",
"uncolorHover": false,
"uncolorDrag": false,
"uncolorSelect": false,
"rememberDeletedItems": false,
"appIcons": {},
"tabIcons": {},
"fileIcons": {
"Animals": {
"icon": "lucide-cat",
"unsynced": [
"bc82bad825d7514a"
]
},
"Countries": {
"icon": "lucide-trees",
"unsynced": [
"bc82bad825d7514a"
]
},
"Images": {
"icon": "lucide-image",
"unsynced": [
"bc82bad825d7514a"
]
},
"Languages": {
"icon": "lucide-languages",
"unsynced": [
"bc82bad825d7514a"
]
}
},
"bookmarkIcons": {},
"propertyIcons": {},
"ribbonIcons": {
"pinned-notes:Countries": {
"icon": "lucide-trees"
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,10 @@
{
"id": "iconic",
"name": "Iconic",
"version": "1.0.13",
"minAppVersion": "1.6.0",
"description": "Customize your app icons directly from the UI, including tabs, files, bookmarks, properties, and ribbon commands.",
"author": "Holo",
"authorUrl": "https://github.com/gfxholo",
"isDesktopOnly": false
}

View file

@ -0,0 +1,318 @@
body {
--ltr-icons: .lucide-check, .lucide-help-circle, .sidebar-left, .sidebar-right;
}
.iconic-icon > .iconic-emoji {
display: flex;
flex-wrap: wrap;
align-content: center;
justify-content: center;
overflow: clip;
overflow-clip-margin: 5px;
width: var(--icon-size);
height: var(--icon-size);
font-size: calc(var(--icon-size) * 0.9);
}
/* Tabs */
.workspace .mod-root .workspace-tab-header[data-type="markdown"] .workspace-tab-header-inner-icon,
.workspace .mod-root .workspace-tab-header[data-type="empty"] .workspace-tab-header-inner-icon {
display: flex;
}
.workspace .mod-stacked .iconic-emoji {
transform: rotate(-90deg);
}
.iconic-bigger-icons .mod-root .workspace-tab-header-inner-icon.iconic-icon > * {
--icon-size: var(--icon-s);
--icon-stroke: var(--icon-s-stroke-width);
}
.iconic-clickable-icons .mod-root .workspace-tab-header-inner-icon.iconic-icon:hover {
cursor: pointer;
filter: contrast(200%);
}
/* List items */
.tree-item-self > .iconic-icon > .iconic-emoji {
--icon-size: var(--icon-xs);
}
.tree-item-self > .tree-item-icon.collapse-icon.iconic-icon > .svg-icon {
width: var(--icon-size);
height: var(--icon-size);
stroke-width: var(--icon-stroke);
color: unset;
transform: unset;
}
.mod-rtl .tree-item-self > .tree-item-icon.collapse-icon.iconic-icon > .svg-icon:not(var(--ltr-icons)) {
transform: scale(-1, 1);
}
.tree-item-self > .iconic-sidekick {
display: flex;
align-self: center;
width: var(--size-4-4);
margin-inline-end: var(--size-4-1);
opacity: var(--icon-opacity);
--icon-size: var(--icon-xs);
--icon-stroke: var(--icon-s-stroke-width);
}
.iconic-bigger-icons .tree-item-self > .iconic-icon > .svg-icon {
--icon-size: var(--icon-s);
--icon-stroke: var(--icon-s-stroke-width);
}
.iconic-bigger-icons .tree-item-self > .iconic-icon > .iconic-emoji {
--icon-size: var(--icon-s);
}
.iconic-bigger-icons .iconic-item > .tree-item-self > .tree-item-inner {
margin-inline-start: 1.5px;
}
.is-mobile .iconic-bigger-icons .tree-item.iconic-item > .tree-item-self > .tree-item-inner {
margin-inline-start: 3px;
}
.iconic-clickable-icons .tree-item-self > .iconic-icon:hover {
cursor: pointer;
filter: contrast(200%);
}
/* Properties editor */
.iconic-clickable-icons .metadata-property-icon.iconic-icon:hover {
cursor: pointer;
filter: contrast(200%);
}
/* Ribbon */
.side-dock-ribbon-action.iconic-icon > .iconic-emoji {
--icon-size: var(--icon-l);
}
.mobile-option-setting-item-option-icon.iconic-icon {
cursor: pointer;
}
/* Icon picker */
.iconic-modal .setting-item-control input[type="color"] { width: auto; }
.iconic-modal .setting-item-control input[type="text"] { width: 100%; }
.iconic-modal .setting-item-control .search-input-container { width: 100%; }
.is-tablet .iconic-button-row {
display: flex;
flex-direction: row;
width: 100%;
}
/* Search results container */
.iconic-search-results { overflow-x: scroll; }
.iconic-search-results > .setting-item-info { display: none; }
.iconic-search-results > .setting-item-control { justify-content: center; }
.is-phone .iconic-search-results { flex-direction: row !important; }
.is-phone .iconic-search-results > .setting-item-control { width: auto !important; }
/* Search result */
.iconic-search-result > * {
height: var(--icon-size);
--icon-size: calc(var(--icon-l) * 1.25);
--icon-stroke: calc(var(--icon-l-stroke-width) * 6/7);
}
.iconic-bigger-search-results .iconic-search-result > * {
--icon-size: var(--icon-xl);
--icon-stroke: var(--icon-xl-stroke-width);
}
.is-mobile .iconic-search-result > * {
--icon-size: var(--icon-l);
--icon-stroke: var(--icon-l-stroke-width);
}
.is-mobile.iconic-bigger-search-results .iconic-search-result > * {
--icon-size: var(--icon-xl);
--icon-stroke: var(--icon-l-stroke-width);
}
/* Indicators */
.iconic-indicator { pointer-events: none; }
/* Invisibility */
.iconic-invisible { visibility: hidden; }
.is-phone .iconic-reset-color.iconic-invisible { display: none; }
/* Colorless settings */
.iconic-uncolor-hover .workspace-tab-header:hover .iconic-icon > .svg-icon,
.iconic-uncolor-hover .tree-item-self:hover > .tree-item-icon.iconic-icon > .svg-icon,
.iconic-uncolor-hover .side-dock-ribbon-action.iconic-icon:hover > .svg-icon,
.iconic-uncolor-hover .iconic-search-result:hover > .svg-icon {
color: currentColor !important;
}
.iconic-uncolor-drag > .drag-ghost .svg-icon {
color: currentColor !important;
}
.iconic-uncolor-select .workspace-tab-header.is-active .iconic-icon > .svg-icon,
.iconic-uncolor-select .tree-item-self.is-active > .tree-item-icon.iconic-icon > .svg-icon {
color: currentColor !important;
}
/* Theme: Blue Topaz */
.iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .tree-item-icon:not(.collapse-icon) {
margin-inline-start: 0;
}
.iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content {
margin-inline-start: var(--size-4-5);
}
.iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-file-title .nav-file-title-content:not(.mk-tree-text)::before {
display: none;
}
.iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:has(.collapse-icon.iconic-icon) > .collapse-icon::before {
display: none;
}
.iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:has(.collapse-icon.iconic-icon) > .collapse-icon > svg {
display: flex;
}
/* Theme: Border */
.iconic-theme-border .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .nav-file-title::before {
display: none;
}
.iconic-theme-border .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item > .tree-item-self.mod-collapsible > .collapse-icon {
-webkit-mask-image: none;
background-color: transparent;
}
.iconic-theme-border .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item-self.mod-collapsible > .collapse-icon > .svg-icon {
color: unset;
}
.iconic-theme-border .workspace-leaf-content[data-type="file-explorer"] .tree-item > .tree-item-self:is(.nav-file-title, .nav-folder.mod-root > .nav-folder-title)::before {
display: none;
}
/* Theme: Catppuccin */
.iconic-theme-cat .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title-content::before {
display: none;
}
/* Theme: Cyber Glow */
.iconic-theme-cglow .workspace-leaf-content[data-type="file-explorer"] .tree-item-self > .tree-item-inner::before {
display: none;
}
.iconic-theme-cglow .workspace-leaf-content[data-type="file-explorer"] .tree-item-icon.collapse-icon.nav-folder-collapse-indicator {
display: flex;
}
/* Theme: Discordian */
.iconic-theme-discord .workspace-leaf-content[data-type="file-explorer"] .nav-file-title > .tree-item-icon {
margin-inline-start: 0;
}
.iconic-theme-discord .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content {
margin-inline-start: var(--size-4-5);
}
/* Theme: ITS Theme */
.iconic-theme-its .tree-item-self > .tree-item-icon {
margin-right: 6px;
}
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .tree-item-icon {
position: absolute;
}
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content {
margin-inline-start: var(--size-4-5);
}
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content::before,
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title-content::before {
display: none;
}
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-folder-collapse-indicator {
display: flex;
}
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:not(:has(.iconic-sidekick)) > .nav-folder-title-content {
margin-inline-start: var(--size-4-5);
}
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .iconic-sidekick {
margin-inline-start: var(--size-4-5);
}
/* Theme: LYT Mode */
.iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item-inner {
padding-inline-start: var(--size-4-2);
}
.iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .iconic-sidekick {
margin-inline-start: var(--size-4-2);
margin-inline-end: 0;
}
.iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item-icon:not(.collapse-icon) {
margin-inline-start: calc(-0.5 * var(--size-4-5));
}
.iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .mod-collapsible:not(:has(.iconic-sidekick)) > .tree-item-inner {
padding-inline-start: var(--size-4-2);
margin-inline-start: var(--size-4-2);
}
.iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) :not(.mod-collapsible) > .tree-item-inner {
margin-inline-start: var(--size-4-2);
}
.iconic-theme-lyt .workspace-leaf-content > :is(.nav-files-container, .view-content).node-insert-event {
padding: var(--size-4-1) var(--size-4-3) var(--size-4-6) var(--size-4-3);
}
/* Theme: Mado Miniflow */
.iconic-theme-mflow .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item:not(.mod-collapsible) {
margin-inline-start: var(--size-4-2);
}
.iconic-theme-mflow .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title > .collapse-icon {
display: flex;
}
/* Theme: Sanctum */
.iconic-theme-sanctum .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:has(.iconic-sidekick) > .nav-folder-title-content::before {
display: none;
}
/* Theme: Shiba Inu */
.iconic-theme-shiba.theme-light:not(.default-light-theme, .lily-light, .ivory-light, .sky-light, .stone-light) {
--color-red: rgb(240, 68, 114);
--color-orange: rgb(249, 102, 50);
--color-yellow: rgb(228, 147, 32);
--color-green: rgb(64, 155, 40);
--color-cyan: rgb(23, 146, 153);
--color-blue: rgb(71, 143, 238);
--color-purple: rgb(176, 110, 201);
--color-pink: rgb(215, 125, 146);
}
.iconic-theme-shiba.theme-dark:not(.default-dark-theme, .Lilac-dark, .pure-dark, .warm-dark) {
--color-red: rgb(255, 98, 107);
--color-orange: rgb(247, 157, 124);
--color-yellow: rgb(249, 226, 175);
--color-green: rgb(56, 198, 141);
--color-cyan: rgb(104, 188, 204);
--color-blue: rgb(147, 183, 245);
--color-purple: rgb(196, 167, 231);
--color-pink: rgb(243, 137, 143);
}
.iconic-theme-shiba .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content::before {
display: none;
}
/* Theme: Shimmering Focus */
.iconic-theme-shimmer :is(.style-settings-collapse-indicator, .collapse-icon) > .svg-icon.svg-icon.svg-icon.svg-icon {
width: var(--icon-xs);
stroke-width: var(--icon-xs-stroke-width);
height: unset;
margin-left: unset;
}
.iconic-theme-shimmer.iconic-bigger-icons :is(.style-settings-collapse-indicator, .collapse-icon) > .svg-icon.svg-icon.svg-icon.svg-icon {
width: var(--icon-s);
stroke-width: var(--icon-s-stroke-width);
}
/* Theme: Sodalite */
.iconic-theme-sodalite .workspace-leaf-content[data-type="file-explorer"] .nav-files-container {
padding-inline-start: var(--size-4-3);
padding-inline-end: var(--size-4-3);
}
.iconic-theme-sodalite .workspace-leaf-content[data-type="file-explorer"] .tree-item-inner::before {
display: none;
}
/* Theme: Spectrum */
.iconic-theme-spectrum .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title > .nav-folder-title-content::before {
display: none;
}
/* Theme: Terminal */
.iconic-theme-terminal .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .collapse-icon.iconic-icon::before {
display: none;
}
/* Theme: Ukiyo */
.iconic-theme-ukiyo .workspace-leaf > .workspace-leaf-content[data-type="file-explorer"] > .nav-files-container.node-insert-event {
padding: var(--size-4-1) var(--size-4-3) var(--size-4-6) var(--size-4-3);
}

View file

@ -6,11 +6,11 @@
"emojiStyle": "native", "emojiStyle": "native",
"iconColor": null, "iconColor": null,
"recentlyUsedIcons": [ "recentlyUsedIcons": [
"FlVosaka", "SlSunflower1",
"FlVikogyna", "SlMarsh1",
"FlVanatn", "SlLagoon1",
"FlSoljord", "SlHoney1",
"FlSeraphis" "SlGodot1"
], ],
"recentlyUsedIconsSize": 5, "recentlyUsedIconsSize": 5,
"rules": [], "rules": [],
@ -77,5 +77,13 @@
"Countries/Soljord.md": "FlSoljord", "Countries/Soljord.md": "FlSoljord",
"Countries/Vanatn.md": "FlVanatn", "Countries/Vanatn.md": "FlVanatn",
"Countries/Vikogyna.md": "FlVikogyna", "Countries/Vikogyna.md": "FlVikogyna",
"Countries/Vosaka.md": "FlVosaka" "Countries/Vosaka.md": "FlVosaka",
"Animals/Slimes/Ababa Slime.md": "SlAbaba1",
"Animals/Slimes/Bark Slime.md": "SlBark1",
"Animals/Slimes/Garden Slime.md": "SlGarden1",
"Animals/Slimes/Godot Slime.md": "SlGodot1",
"Animals/Slimes/Honey Slime.md": "SlHoney1",
"Animals/Slimes/Lagoon Slime.md": "SlLagoon1",
"Animals/Slimes/Marsh Slime.md": "SlMarsh1",
"Animals/Slimes/Sunflower Slime.md": "SlSunflower1"
} }

View file

@ -0,0 +1,10 @@
{
"pinnedNotes": [
{
"id": "710a3527-2ed2-4ad6-a7c9-bcad95cfb914",
"icon": "",
"path": "Countries/_index",
"title": "Countries"
}
]
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,11 @@
{
"id": "pinned-notes",
"name": "Pinned Notes",
"version": "2.0.3",
"minAppVersion": "0.15.0",
"description": "Pin frequently-used notes on Ribbon actions",
"author": "vasilcoin002",
"authorUrl": "https://github.com/vasilcoin002",
"fundingUrl": "https://buymeacoffee.com/vasilcoin002",
"isDesktopOnly": true
}

View file

@ -0,0 +1,7 @@
{
"dividers": {
"698b2a69-a92b-4b1b-bf0f-d93bf98733ef": {
"id": "698b2a69-a92b-4b1b-bf0f-d93bf98733ef"
}
}
}

View file

@ -0,0 +1,175 @@
/*
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
*/
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: !0 });
}, __copyProps = (to, from, except, desc) => {
if (from && typeof from == "object" || typeof from == "function")
for (let key of __getOwnPropNames(from))
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
// main.ts
var main_exports = {};
__export(main_exports, {
default: () => DividerPlugin
});
module.exports = __toCommonJS(main_exports);
var import_obsidian = require("obsidian");
// node_modules/uuid/dist/esm-browser/rng.js
var getRandomValues, rnds8 = new Uint8Array(16);
function rng() {
if (!getRandomValues && (getRandomValues = typeof crypto != "undefined" && crypto.getRandomValues && crypto.getRandomValues.bind(crypto), !getRandomValues))
throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");
return getRandomValues(rnds8);
}
// node_modules/uuid/dist/esm-browser/stringify.js
var byteToHex = [];
for (let i = 0; i < 256; ++i)
byteToHex.push((i + 256).toString(16).slice(1));
function unsafeStringify(arr, offset = 0) {
return byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]];
}
// node_modules/uuid/dist/esm-browser/native.js
var randomUUID = typeof crypto != "undefined" && crypto.randomUUID && crypto.randomUUID.bind(crypto), native_default = {
randomUUID
};
// node_modules/uuid/dist/esm-browser/v4.js
function v4(options, buf, offset) {
if (native_default.randomUUID && !buf && !options)
return native_default.randomUUID();
options = options || {};
let rnds = options.random || (options.rng || rng)();
if (rnds[6] = rnds[6] & 15 | 64, rnds[8] = rnds[8] & 63 | 128, buf) {
offset = offset || 0;
for (let i = 0; i < 16; ++i)
buf[offset + i] = rnds[i];
return buf;
}
return unsafeStringify(rnds);
}
var v4_default = v4;
// main.ts
var DEFAULT_SETTINGS = {
dividers: {}
}, DividerPlugin = class extends import_obsidian.Plugin {
constructor() {
super(...arguments);
this.dividerElements = {};
}
async onload() {
await this.loadSettings(), this.versionCheck(), Object.keys(this.settings.dividers).forEach((dividerId) => {
let divider = this.settings.dividers[dividerId];
this.renderDivider(divider);
}), this.addSettingTab(new DividerSettingTab(this.app, this));
}
onunload() {
}
/**
* Load data from disk, stored in data.json in plugin folder
*/
async loadSettings() {
let data = await this.loadData() || {};
this.settings = Object.assign({}, DEFAULT_SETTINGS, data), this.settings.dividers || (this.settings.dividers = {});
}
/**
* Save data to disk, stored in data.json in plugin folder
*/
async saveSettings() {
await this.saveData(this.settings);
}
/**
* Check the local plugin version against github. If there is a new version, notify the user.
*/
async versionCheck() {
let localVersion = "1.1.1", stableVersion = await (0, import_obsidian.requestUrl)(
"https://raw.githubusercontent.com/andrewmcgivery/obsidian-ribbon-divider/main/package.json"
).then(async (res) => {
if (res.status === 200)
return (await res.json).version;
}), betaVersion = await (0, import_obsidian.requestUrl)(
"https://raw.githubusercontent.com/andrewmcgivery/obsidian-ribbon-divider/beta/package.json"
).then(async (res) => {
if (res.status === 200)
return (await res.json).version;
});
(localVersion == null ? void 0 : localVersion.indexOf("beta")) !== -1 ? localVersion !== betaVersion && new import_obsidian.Notice(
"There is a beta update available for the Ribbon Divider plugin. Please update to to the latest version to get the latest features!",
0
) : localVersion !== stableVersion && new import_obsidian.Notice(
"There is an update available for the Ribbon Divider plugin. Please update to to the latest version to get the latest features!",
0
);
}
/**
* Renders a divider on the ribbon. The HTMLElement is saved to this.dividerElemenets so we can remove it if the
* user deletes it from the settings screen.
* @param divider
*/
async renderDivider(divider) {
if (document.body.hasClass("is-phone"))
return;
let dividerIconEl = this.addRibbonIcon(
"",
`ribbon-divider-${divider.id}`,
(evt) => {
}
);
dividerIconEl.addClass("ribbon-divider"), dividerIconEl.addClass(`ribbon-divider-${divider.id}`), this.dividerElements[divider.id] = dividerIconEl;
}
/**
* Add a new divider and render it
* @param divider
*/
async addDivider(divider) {
this.renderDivider(divider), this.settings.dividers[divider.id] = divider, await this.saveSettings();
}
/**
* Remove an existing divider, both from settings, and from the UI by calling remove() on the saved HTMLElement
* @param dividerId
*/
async removeDivider(dividerId) {
delete this.settings.dividers[dividerId], this.saveSettings(), this.dividerElements[dividerId] && (this.dividerElements[dividerId].remove(), delete this.dividerElements[dividerId]);
}
}, DividerSettingTab = class extends import_obsidian.PluginSettingTab {
constructor(app, plugin) {
super(app, plugin);
this.plugin = plugin;
}
display() {
let { containerEl } = this;
containerEl.empty(), containerEl.createEl("p", {
attr: {
style: "display: block; margin-bottom: 5px"
},
text: 'Use this settings screen to add/update dividers to your ribbon. Clicking "New Divider" below will immediately add the divider.'
}), containerEl.createEl("hr");
let dividersContainerEl = containerEl.createDiv("dividers-container");
Object.keys(this.plugin.settings.dividers).forEach((dividerId) => {
let divider = this.plugin.settings.dividers[dividerId];
new import_obsidian.Setting(dividersContainerEl).setName("Divider").setDesc(`Id: ${divider.id}`).addButton((button) => {
button.setButtonText("Delete").onClick(async () => {
await this.plugin.removeDivider(divider.id), this.display();
});
});
}), containerEl.createEl("button", { text: "New divider", cls: "mod-cta" }).addEventListener("click", () => {
this.plugin.addDivider({
id: v4_default()
}), this.display();
});
}
};

View file

@ -0,0 +1,11 @@
{
"id": "ribbon-divider",
"name": "Ribbon Divider",
"version": "1.1.1",
"minAppVersion": "0.15.0",
"description": "Allows you to add dividers to the ribbon to space out your icons.",
"author": "Andrew McGivery",
"authorUrl": "https://github.com/andrewmcgivery",
"fundingUrl": "https://www.buymeacoffee.com/andrewmcgivery",
"isDesktopOnly": false
}

View file

@ -0,0 +1,17 @@
/* styles.scss */
.side-dock-actions .side-dock-ribbon-action.ribbon-divider {
height: 1px;
width: 70%;
padding: 4px 0;
}
.side-dock-actions .side-dock-ribbon-action.ribbon-divider:hover {
background-color: transparent;
}
.side-dock-actions .side-dock-ribbon-action.ribbon-divider:before {
content: "";
display: block;
height: 1px;
width: 100%;
background-color: var(--icon-color);
opacity: .5;
}

View file

@ -6,6 +6,7 @@
"art_variant1": "multitext", "art_variant1": "multitext",
"art_variant2": "multitext", "art_variant2": "multitext",
"art_variant3": "multitext", "art_variant3": "multitext",
"art_golden": "text" "art_golden": "text",
"golden": "multitext"
} }
} }

View file

@ -99,9 +99,21 @@
"source": false "source": false
} }
} }
},
{
"id": "7c0e510d9bbb8171",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "conflict-files-obsidian-git.md",
"mode": "source",
"source": false
}
}
} }
], ],
"currentTab": 7 "currentTab": 8
} }
], ],
"direction": "vertical" "direction": "vertical"
@ -167,7 +179,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "Countries/Mantine.md", "file": "conflict-files-obsidian-git.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -184,7 +196,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "Countries/Mantine.md", "file": "conflict-files-obsidian-git.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -207,7 +219,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "Countries/Mantine.md" "file": "conflict-files-obsidian-git.md"
} }
} }
}, },
@ -236,9 +248,22 @@
"obsidian-git:Open Git source control": false "obsidian-git:Open Git source control": false
} }
}, },
"active": "0301fd3e66dac7f2", "active": "7c0e510d9bbb8171",
"lastOpenFiles": [ "lastOpenFiles": [
"Countries/Mantine.md",
"conflict-files-obsidian-git.md", "conflict-files-obsidian-git.md",
"Species/_index.md",
"Species/Turian.md",
"Species",
"Regions/_index.md",
"Regions",
"Provinces/_index.md",
"Provinces",
"Plants/_index.md",
"Plants",
"Landmarks/_index.md",
"Images/Icons/cat.svg",
"Images/Icons",
"Animals/Slimes/_index.md", "Animals/Slimes/_index.md",
"Animals/Slimes/Ababa Slime.md", "Animals/Slimes/Ababa Slime.md",
"Countries/Krakala.md", "Countries/Krakala.md",
@ -259,7 +284,6 @@
"Images/Slimes/marsh-2.png", "Images/Slimes/marsh-2.png",
"Images/Slimes/marsh-1.png", "Images/Slimes/marsh-1.png",
"Images/Slimes/lagoon-4.png", "Images/Slimes/lagoon-4.png",
"Images/Slimes/lagoon-3.png",
"Animals/Slimes/Untitled.md", "Animals/Slimes/Untitled.md",
"Animals/_index.md", "Animals/_index.md",
"Countries/_index.md", "Countries/_index.md",
@ -269,20 +293,8 @@
"Languages/Fayahi.md", "Languages/Fayahi.md",
"Images/Slimes/ababa", "Images/Slimes/ababa",
"Images/Slimes", "Images/Slimes",
"Countries/Faelani.md",
"Countries/Dolfeyja.md",
"Countries/Felmyr.md",
"Countries/Vosaka.md",
"Countries/Vikogyna.md",
"Countries/Vanatn.md",
"Countries/Soljord.md",
"Images/Flags", "Images/Flags",
"Images/slimes/ababa", "Images/slimes/ababa",
"Images/slimes", "Images/slimes"
"Animals/Slimes",
"Languages",
"Images",
"Regions",
"Territories"
] ]
} }

View file

@ -1 +1 @@
Cat To be added

View file

@ -0,0 +1 @@
To be added

View file

@ -8,7 +8,12 @@ variant2:
variant3: variant3:
- "![[ababa-3.png]]" - "![[ababa-3.png]]"
- "[[Barrowmaw]]" - "[[Barrowmaw]]"
golden: "![[ababa-4.png]]" golden:
- "![[ababa-4.png]]"
- Everywhere
rarity: Common
type: Cold
requestor: n04_ux
--- ---
# On the Ababa Slime # On the Ababa Slime

View file

@ -8,5 +8,11 @@ variant2:
variant3: variant3:
- "![[bark-3.png]]" - "![[bark-3.png]]"
- "[[Lekia]]" - "[[Lekia]]"
golden: "![[bark-4.png]]" golden:
- "![[bark-4.png]]"
- Everywhere
rarity: Common
type: Nature
requestor: Ategon
--- ---
To be added

View file

@ -8,5 +8,11 @@ variant2:
variant3: variant3:
- "![[garden-3.png]]" - "![[garden-3.png]]"
- "[[Dolfeyja]]" - "[[Dolfeyja]]"
golden: "![[garden-4.png]]" golden:
- "![[garden-4.png]]"
- Everywhere
rarity: Common
type: Nature
requestor: Ategon
--- ---
To be added

View file

@ -8,5 +8,11 @@ variant2:
variant3: variant3:
- "![[godot-3.png]]" - "![[godot-3.png]]"
- "[[Soljord]]" - "[[Soljord]]"
golden: "![[godot-4.png]]" golden:
- "![[godot-4.png]]"
- Everywhere
rarity: Uncommon
type: Stone
requestor: PracticalNPC
--- ---
To be added

View file

@ -8,5 +8,11 @@ variant2:
variant3: variant3:
- "![[honey-3.png]]" - "![[honey-3.png]]"
- "[[Mantine]]" - "[[Mantine]]"
golden: "![[honey-4.png]]" golden:
- "![[honey-4.png]]"
- Everywhere
rarity: Common
type: Nature
requestor: SarahClick
--- ---
To be added

View file

@ -8,5 +8,11 @@ variant2:
variant3: variant3:
- "![[lagoon-3.png]]" - "![[lagoon-3.png]]"
- "[[Felmyr]]" - "[[Felmyr]]"
golden: "![[lagoon-4.png]]" golden:
- "![[lagoon-4.png]]"
- Everywhere
rarity: Common
type: Water
requestor: Ategon
--- ---
To be added

View file

@ -8,5 +8,10 @@ variant2:
variant3: variant3:
- "![[marsh-3.png]]" - "![[marsh-3.png]]"
- "[[Barrowmaw]]" - "[[Barrowmaw]]"
golden: "![[marsh-4.png]]" golden:
- "![[marsh-4.png]]"
rarity: Common
type: Nature
requestor: Ategon
--- ---
To be added

View file

@ -8,5 +8,11 @@ variant2:
variant3: variant3:
- "![[sunflower-3.png]]" - "![[sunflower-3.png]]"
- "[[Blanchister]]" - "[[Blanchister]]"
golden: "![[sunflower-4.png]]" golden:
- "![[sunflower-4.png]]"
- Everywhere
rarity: Common
type: Nature
requestor: GGlitchedOut
--- ---
To be added

View file

@ -1,15 +1,14 @@
<!-- QueryToSerialize: TABLE WITHOUT ID file.link as "Slimes", variant1[0] as "Regional Variant 1", variant2[0] as "Regional Variant 2", variant3[0] as "Regional Variant 3", golden[0] as "Golden Variant", rarity as "Rarity" FROM "Animals/Slimes" WHERE file.name != "_index" SORT rarity, file.name -->
<!-- SerializedQuery: TABLE WITHOUT ID file.link as "Slimes", variant1[0] as "Regional Variant 1", variant2[0] as "Regional Variant 2", variant3[0] as "Regional Variant 3", golden[0] as "Golden Variant", rarity as "Rarity" FROM "Animals/Slimes" WHERE file.name != "_index" SORT rarity, file.name -->
<!-- QueryToSerialize: TABLE WITHOUT ID file.link as "Slimes", variant1 as "Variant 1", variant2 as "Variant 2", variant3 as "Variant 3", golden as "Golden Variant" FROM "Animals/Slimes" WHERE file.name != "_index" SORT file.name --> | Slimes | Regional Variant 1 | Regional Variant 2 | Regional Variant 3 | Golden Variant | Rarity |
<!-- SerializedQuery: TABLE WITHOUT ID file.link as "Slimes", variant1 as "Variant 1", variant2 as "Variant 2", variant3 as "Variant 3", golden as "Golden Variant" FROM "Animals/Slimes" WHERE file.name != "_index" SORT file.name --> | ------------------------------------------------------ | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | -------- |
| [[Ababa Slime]] | ![[ababa-1.png]] | ![[ababa-2.png]] | ![[ababa-3.png]] | ![[ababa-4.png]] | Common |
| Slimes | Variant 1 | Variant 2 | Variant 3 | Golden Variant | | [[Bark Slime]] | ![[bark-1.png]] | ![[bark-2.png]] | ![[bark-3.png]] | ![[bark-4.png]] | Common |
| ------------------- | ------------------------------------------------------------ | ---------------------------------------------------------- | -------------------------------------------------------------- | -------------------- | | [[Garden Slime]] | ![[garden-1.png]] | ![[garden-2.png]] | ![[garden-3.png]] | ![[garden-4.png]] | Common |
| [[Ababa Slime]] | <ul><li>![[ababa-1.png]]</li><li>[[Batanoka]]</li></ul> | <ul><li>![[ababa-2.png]]</li><li>[[Faelani]]</li></ul> | <ul><li>![[ababa-3.png]]</li><li>[[Barrowmaw]]</li></ul> | ![[ababa-4.png]] | | [[Honey Slime]] | ![[honey-1.png]] | ![[honey-2.png]] | ![[honey-3.png]] | ![[honey-4.png]] | Common |
| [[Bark Slime]] | <ul><li>![[bark-1.png]]</li><li>[[Dasona]]</li></ul> | <ul><li>![[bark-2.png]]</li><li>[[Gudoko]]</li></ul> | <ul><li>![[bark-3.png]]</li><li>[[Lekia]]</li></ul> | ![[bark-4.png]] | | [[Lagoon Slime]] | ![[lagoon-1.png]] | ![[lagoon-2.png]] | ![[lagoon-3.png]] | ![[lagoon-4.png]] | Common |
| [[Garden Slime]] | <ul><li>![[garden-1.png]]</li><li>[[Dasona]]</li></ul> | <ul><li>![[garden-2.png]]</li><li>[[Soljord]]</li></ul> | <ul><li>![[garden-3.png]]</li><li>[[Dolfeyja]]</li></ul> | ![[garden-4.png]] | | [[Marsh Slime]] | ![[marsh-1.png]] | ![[marsh-2.png]] | ![[marsh-3.png]] | ![[marsh-4.png]] | Common |
| [[Godot Slime]] | <ul><li>![[godot-1.png]]</li><li>[[Gokolm]]</li></ul> | <ul><li>![[godot-2.png]]</li><li>[[Dasona]]</li></ul> | <ul><li>![[godot-3.png]]</li><li>[[Soljord]]</li></ul> | ![[godot-4.png]] | | [[Sunflower Slime]] | ![[sunflower-1.png]] | ![[sunflower-2.png]] | ![[sunflower-3.png]] | ![[sunflower-4.png]] | Common |
| [[Honey Slime]] | <ul><li>![[honey-1.png]]</li><li>[[Dahallow]]</li></ul> | <ul><li>![[honey-2.png]]</li><li>[[Krakala]]</li></ul> | <ul><li>![[honey-3.png]]</li><li>[[Mantine]]</li></ul> | ![[honey-4.png]] | | [[Godot Slime]] | ![[godot-1.png]] | ![[godot-2.png]] | ![[godot-3.png]] | ![[godot-4.png]] | Uncommon |
| [[Lagoon Slime]] | <ul><li>![[lagoon-1.png]]</li><li>[[Dahallow]]</li></ul> | <ul><li>![[lagoon-2.png]]</li><li>[[Mantine]]</li></ul> | <ul><li>![[lagoon-3.png]]</li><li>[[Felmyr]]</li></ul> | ![[lagoon-4.png]] |
| [[Marsh Slime]] | <ul><li>![[marsh-1.png]]</li><li>[[Oshela]]</li></ul> | <ul><li>![[marsh-2.png]]</li><li>[[Vikogyna]]</li></ul> | <ul><li>![[marsh-3.png]]</li><li>[[Barrowmaw]]</li></ul> | ![[marsh-4.png]] |
| [[Sunflower Slime]] | <ul><li>![[sunflower-1.png]]</li><li>[[Calcetron]]</li></ul> | <ul><li>![[sunflower-2.png]]</li><li>[[Llasuki]]</li></ul> | <ul><li>![[sunflower-3.png]]</li><li>[[Blanchister]]</li></ul> | ![[sunflower-4.png]] |
<!-- SerializedQuery END --> <!-- SerializedQuery END -->

View file

@ -0,0 +1 @@
To be added

View file

@ -0,0 +1 @@
To be added

View file

@ -1 +1,12 @@
Test index # ![[cat.svg]] Animals
<!-- QueryToSerialize: TABLE WITHOUT ID link(file.path, choice(file.name != "_index", file.name, split(file.folder, "/")[1])) as "Animals" FROM "Animals" WHERE (file.folder = "Animals" and file.name != "_index") or (file.name = "_index" AND file.folder != "Animals") -->
<!-- SerializedQuery: TABLE WITHOUT ID link(file.path, choice(file.name != "_index", file.name, split(file.folder, "/")[1])) as "Animals" FROM "Animals" WHERE (file.folder = "Animals" and file.name != "_index") or (file.name = "_index" AND file.folder != "Animals") -->
| Animals |
| ------------------------------------ |
| [[Cat]] |
| [[Dog]] |
| [[Animals/Slimes/_index.md\|Slimes]] |
| [[Slom]] |
| [[Taura]] |
<!-- SerializedQuery END -->

View file

@ -4,5 +4,4 @@ flag: "![[barrowmaw.png]]"
language: language:
capital: capital:
--- ---
To be added
Test

View file

@ -4,5 +4,4 @@ flag: "![[batanoka.png]]"
language: "[[Edikan]]" language: "[[Edikan]]"
capital: "[[Bririe]]" capital: "[[Bririe]]"
--- ---
To be added
This is a test

View file

@ -4,5 +4,4 @@ flag: "![[blanchister.png]]"
language: language:
capital: capital:
--- ---
To be added
Test 5

View file

@ -4,3 +4,4 @@ flag: "![[calcetron.png]]"
language: language:
capital: capital:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[dahallow.png]]"
language: language:
capital: capital:
--- ---
To be added

View file

@ -4,6 +4,4 @@ flag: "![[dasona.png]]"
language: "[[Edikan]]" language: "[[Edikan]]"
capital: "[[Crester]]" capital: "[[Crester]]"
--- ---
To be added
Test Country Text

View file

@ -4,3 +4,4 @@ flag: "![[dolfeyja.png]]"
language: "[[Edikan]]" language: "[[Edikan]]"
capital: capital:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[dratana.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[drenvale.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[faelani.png]]"
capital: capital:
language: "[[Fayahi]]" language: "[[Fayahi]]"
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[falaka.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[felmyr.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[gokolm.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[gudoko.png]]"
capital: capital:
language: "[[Guo]]" language: "[[Guo]]"
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[hanoka.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[krakala.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[lavaki.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[lekia.png]]"
capital: capital:
language: "[[Lacelian]]" language: "[[Lacelian]]"
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[llasuki.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,6 +4,7 @@ flag: "![[mantine.png]]"
capital: capital:
language: language:
--- ---
<<<<<<< HEAD
Mantine was a calm region for part of its history; some small cities formed, but growth was slow and dispersed throughout the region.  Mantine was a calm region for part of its history; some small cities formed, but growth was slow and dispersed throughout the region. 
@ -21,4 +22,7 @@ One of the earliest depictions of diplomacy appeared through this era between th
The most tense event from this period occurred when a party of Medine's Army tried getting some steel to Sidone's port, where a ship from another country was waiting. The Queen of Sidone retained this party for a time; she wouldn't allow this to happen without some competition for the crown.  The most tense event from this period occurred when a party of Medine's Army tried getting some steel to Sidone's port, where a ship from another country was waiting. The Queen of Sidone retained this party for a time; she wouldn't allow this to happen without some competition for the crown. 
While this happened, The Great Storm of Mantine started. While this happened, The Great Storm of Mantine started.
=======
To be added
>>>>>>> origin/main

View file

@ -4,3 +4,4 @@ flag: "![[mortham.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[nakadon.png]]"
capital: capital:
language: "[[Lacelian]]" language: "[[Lacelian]]"
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[nasahra.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[nonkur.png]]"
capital: capital:
language: "[[Mokrixi]]" language: "[[Mokrixi]]"
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[oshela.png]]"
capital: capital:
language: "[[Lacelian]]" language: "[[Lacelian]]"
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[ovanos.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[seraphis.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[soljord.png]]"
capital: capital:
language: "[[Edikan]]" language: "[[Edikan]]"
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[vanatn.png]]"
capital: capital:
language: language:
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[vikogyna.png]]"
capital: capital:
language: "[[Edikan]]" language: "[[Edikan]]"
--- ---
To be added

View file

@ -4,3 +4,4 @@ flag: "![[vosaka.png]]"
capital: capital:
language: "[[Edikan]]" language: "[[Edikan]]"
--- ---
To be added

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-cat"><path d="M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z"/><path d="M8 14v.5"/><path d="M16 14v.5"/><path d="M11.25 16.25h1.5L12 17l-.75-.75Z"/></svg>

After

Width:  |  Height:  |  Size: 519 B

View file

@ -0,0 +1 @@
To be added

View file

@ -1 +1,12 @@
To be added <!-- QueryToSerialize: TABLE WITHOUT ID link(file.path, choice(file.name != "_index", file.name, split(file.folder, "/")[1])) as "Languages" FROM "Languages" WHERE (file.folder = "Languages" and file.name != "_index") or (file.name = "_index" AND file.folder != "Languages") -->
<!-- SerializedQuery: TABLE WITHOUT ID link(file.path, choice(file.name != "_index", file.name, split(file.folder, "/")[1])) as "Languages" FROM "Languages" WHERE (file.folder = "Languages" and file.name != "_index") or (file.name = "_index" AND file.folder != "Languages") -->
| Languages |
| ----------------------------------- |
| [[Edikan]] |
| [[Fayahi]] |
| [[Guo]] |
| [[Lacelian]] |
| [[Mokrixi]] |
<!-- SerializedQuery END -->

7
Edikoyo/Plants/_index.md Normal file
View file

@ -0,0 +1,7 @@
<!-- QueryToSerialize: TABLE WITHOUT ID link(file.path, choice(file.name != "_index", file.name, split(file.folder, "/")[1])) as "Plants" FROM "Plants" WHERE (file.folder = "Plants" and file.name != "_index") or (file.name = "_index" AND file.folder != "Plants") -->
<!-- SerializedQuery: TABLE WITHOUT ID link(file.path, choice(file.name != "_index", file.name, split(file.folder, "/")[1])) as "Plants" FROM "Plants" WHERE (file.folder = "Plants" and file.name != "_index") or (file.name = "_index" AND file.folder != "Plants") -->
| Plants |
| ------ |
<!-- SerializedQuery END -->

View file

@ -0,0 +1 @@
To be added

View file

@ -0,0 +1 @@
To be added

View file

@ -0,0 +1 @@
# Turian

View file

@ -0,0 +1 @@
To be added

17
assets/_variables.scss Normal file
View file

@ -0,0 +1,17 @@
@mixin theme-dark {
--gray-100: rgba(255, 255, 255, 0.1);
--gray-200: rgba(255, 255, 255, 0.2);
--gray-500: rgba(255, 255, 255, 0.5);
--color-link: #84b2ff;
--color-visited-link: #b88dff;
--body-background: #121212;
--body-font-color: #d9dcdf;
--icon-filter: brightness(0) invert(1);
--hint-color-info: #6bf;
--hint-color-warning: #fd6;
--hint-color-danger: #f66;
}

View file

@ -1,7 +0,0 @@
baseURL = 'http://wiki.edikoyo.com/'
languageCode = 'en-us'
title = 'Edikoyo Wiki'
theme = 'hugo-book'
[params]
BookSection = '*'

33
config.yaml Normal file
View file

@ -0,0 +1,33 @@
baseURL: 'http://wiki.edikoyo.com'
title: 'Edikoyo Wiki'
theme: 'hugo-book'
enableGitInfo: true
languages:
en:
languageName: 'English'
contentDir: 'content'
weight: 1
menu:
# before: []
after:
- name: 'Source'
url: 'https://git.edikoyo.com/Edikoyo/EdikoyoWiki'
weight: 10
- name: 'Links'
url: 'https://links.edikoyo.com'
weight: 100
module:
imports:
- path: github.com/hugomods/icons/vendors/lucide
params:
BookMenuBundle: 'menu'
BookTheme: 'auto'
BookToC: true
BookLogo: '/Images/Slimes/sunflower-1.png'
BookFavicon: '/Images/Slimes/sunflower-1.png'
BookCommitPath: 'commit'
CookRepo: 'https://git.edikoyo.com/Edikoyo/EdikoyoWiki'

View file

@ -1,4 +0,0 @@
---
---
Cat

View file

@ -1,4 +0,0 @@
---
---

View file

@ -1,67 +0,0 @@
---
---
<!-- QueryToSerialize: TABLE WITHOUT ID file.link as "Slimes", variant1 as "Variant 1", variant2 as "Variant 2", variant3 as "Variant 3", golden as "Golden Variant" FROM "Animals/Slimes" WHERE file.name != "_index" SORT file.name -->
<!-- SerializedQuery: TABLE WITHOUT ID file.link as "Slimes", variant1 as "Variant 1", variant2 as "Variant 2", variant3 as "Variant 3", golden as "Golden Variant" FROM "Animals/Slimes" WHERE file.name != "_index" SORT file.name -->
|Slimes|Variant 1|Variant 2|Variant 3|Golden Variant|
|------|---------|---------|---------|--------------|
|[Ababa Slime](Ababa%20Slime.md)|<ul><li>
![ababa-1.png](..\..\Images\Slimes\ababa-1.png)</li><li>
[Batanoka](..\..\Countries\Batanoka.md)</li></ul>|<ul><li>
![ababa-2.png](..\..\Images\Slimes\ababa-2.png)</li><li>
[Faelani](..\..\Countries\Faelani.md)</li></ul>|<ul><li>
![ababa-3.png](..\..\Images\Slimes\ababa-3.png)</li><li>
[Barrowmaw](..\..\Countries\Barrowmaw.md)</li></ul>|![ababa-4.png](..\..\Images\Slimes\ababa-4.png)|
|[Bark Slime](Bark%20Slime.md)|<ul><li>
![bark-1.png](..\..\Images\Slimes\bark-1.png)</li><li>
[Dasona](..\..\Countries\Dasona.md)</li></ul>|<ul><li>
![bark-2.png](..\..\Images\Slimes\bark-2.png)</li><li>
[Gudoko](..\..\Countries\Gudoko.md)</li></ul>|<ul><li>
![bark-3.png](..\..\Images\Slimes\bark-3.png)</li><li>
[Lekia](..\..\Countries\Lekia.md)</li></ul>|![bark-4.png](..\..\Images\Slimes\bark-4.png)|
|[Garden Slime](Garden%20Slime.md)|<ul><li>
![garden-1.png](..\..\Images\Slimes\garden-1.png)</li><li>
[Dasona](..\..\Countries\Dasona.md)</li></ul>|<ul><li>
![garden-2.png](..\..\Images\Slimes\garden-2.png)</li><li>
[Soljord](..\..\Countries\Soljord.md)</li></ul>|<ul><li>
![garden-3.png](..\..\Images\Slimes\garden-3.png)</li><li>
[Dolfeyja](..\..\Countries\Dolfeyja.md)</li></ul>|![garden-4.png](..\..\Images\Slimes\garden-4.png)|
|[Godot Slime](Godot%20Slime.md)|<ul><li>
![godot-1.png](..\..\Images\Slimes\godot-1.png)</li><li>
[Gokolm](..\..\Countries\Gokolm.md)</li></ul>|<ul><li>
![godot-2.png](..\..\Images\Slimes\godot-2.png)</li><li>
[Dasona](..\..\Countries\Dasona.md)</li></ul>|<ul><li>
![godot-3.png](..\..\Images\Slimes\godot-3.png)</li><li>
[Soljord](..\..\Countries\Soljord.md)</li></ul>|![godot-4.png](..\..\Images\Slimes\godot-4.png)|
|[Honey Slime](Honey%20Slime.md)|<ul><li>
![honey-1.png](..\..\Images\Slimes\honey-1.png)</li><li>
[Dahallow](..\..\Countries\Dahallow.md)</li></ul>|<ul><li>
![honey-2.png](..\..\Images\Slimes\honey-2.png)</li><li>
[Krakala](..\..\Countries\Krakala.md)</li></ul>|<ul><li>
![honey-3.png](..\..\Images\Slimes\honey-3.png)</li><li>
[Mantine](..\..\Countries\Mantine.md)</li></ul>|![honey-4.png](..\..\Images\Slimes\honey-4.png)|
|[Lagoon Slime](Lagoon%20Slime.md)|<ul><li>
![lagoon-1.png](..\..\Images\Slimes\lagoon-1.png)</li><li>
[Dahallow](..\..\Countries\Dahallow.md)</li></ul>|<ul><li>
![lagoon-2.png](..\..\Images\Slimes\lagoon-2.png)</li><li>
[Mantine](..\..\Countries\Mantine.md)</li></ul>|<ul><li>
![lagoon-3.png](..\..\Images\Slimes\lagoon-3.png)</li><li>
[Felmyr](..\..\Countries\Felmyr.md)</li></ul>|![lagoon-4.png](..\..\Images\Slimes\lagoon-4.png)|
|[Marsh Slime](Marsh%20Slime.md)|<ul><li>
![marsh-1.png](..\..\Images\Slimes\marsh-1.png)</li><li>
[Oshela](..\..\Countries\Oshela.md)</li></ul>|<ul><li>
![marsh-2.png](..\..\Images\Slimes\marsh-2.png)</li><li>
[Vikogyna](..\..\Countries\Vikogyna.md)</li></ul>|<ul><li>
![marsh-3.png](..\..\Images\Slimes\marsh-3.png)</li><li>
[Barrowmaw](..\..\Countries\Barrowmaw.md)</li></ul>|![marsh-4.png](..\..\Images\Slimes\marsh-4.png)|
|[Sunflower Slime](Sunflower%20Slime.md)|<ul><li>
![sunflower-1.png](..\..\Images\Slimes\sunflower-1.png)</li><li>
[Calcetron](..\..\Countries\Calcetron.md)</li></ul>|<ul><li>
![sunflower-2.png](..\..\Images\Slimes\sunflower-2.png)</li><li>
[Llasuki](..\..\Countries\Llasuki.md)</li></ul>|<ul><li>
![sunflower-3.png](..\..\Images\Slimes\sunflower-3.png)</li><li>
[Blanchister](..\..\Countries\Blanchister.md)</li></ul>|![sunflower-4.png](..\..\Images\Slimes\sunflower-4.png)|
<!-- SerializedQuery END -->

View file

@ -1,4 +0,0 @@
---
---

View file

@ -1,4 +0,0 @@
---
---
Test index

5
content/_index.md Normal file
View file

@ -0,0 +1,5 @@
Welcome to the Edikoyo Wiki!
The wiki is currently under construction so many sections will be empty as information is getting added
{{< ico lucide building >}}

View file

@ -8,7 +8,12 @@ variant2:
variant3: variant3:
- '![[ababa-3.png]]' - '![[ababa-3.png]]'
- '[[Barrowmaw]]' - '[[Barrowmaw]]'
golden: '![[ababa-4.png]]' golden:
- '![[ababa-4.png]]'
- Everywhere
rarity: Common
type: Cold
requestor: n04_ux
--- ---
# On the Ababa Slime # On the Ababa Slime

View file

@ -8,7 +8,12 @@ variant2:
variant3: variant3:
- '![[bark-3.png]]' - '![[bark-3.png]]'
- '[[Lekia]]' - '[[Lekia]]'
golden: '![[bark-4.png]]' golden:
- '![[bark-4.png]]'
- Everywhere
rarity: Common
type: Nature
requestor: Ategon
--- ---
To be added

View file

@ -8,7 +8,12 @@ variant2:
variant3: variant3:
- '![[garden-3.png]]' - '![[garden-3.png]]'
- '[[Dolfeyja]]' - '[[Dolfeyja]]'
golden: '![[garden-4.png]]' golden:
- '![[garden-4.png]]'
- Everywhere
rarity: Common
type: Nature
requestor: Ategon
--- ---
To be added

View file

@ -8,7 +8,12 @@ variant2:
variant3: variant3:
- '![[godot-3.png]]' - '![[godot-3.png]]'
- '[[Soljord]]' - '[[Soljord]]'
golden: '![[godot-4.png]]' golden:
- '![[godot-4.png]]'
- Everywhere
rarity: Uncommon
type: Stone
requestor: PracticalNPC
--- ---
To be added

View file

@ -8,7 +8,12 @@ variant2:
variant3: variant3:
- '![[honey-3.png]]' - '![[honey-3.png]]'
- '[[Mantine]]' - '[[Mantine]]'
golden: '![[honey-4.png]]' golden:
- '![[honey-4.png]]'
- Everywhere
rarity: Common
type: Nature
requestor: SarahClick
--- ---
To be added

View file

@ -8,7 +8,12 @@ variant2:
variant3: variant3:
- '![[lagoon-3.png]]' - '![[lagoon-3.png]]'
- '[[Felmyr]]' - '[[Felmyr]]'
golden: '![[lagoon-4.png]]' golden:
- '![[lagoon-4.png]]'
- Everywhere
rarity: Common
type: Water
requestor: Ategon
--- ---
To be added

View file

@ -8,7 +8,11 @@ variant2:
variant3: variant3:
- '![[marsh-3.png]]' - '![[marsh-3.png]]'
- '[[Barrowmaw]]' - '[[Barrowmaw]]'
golden: '![[marsh-4.png]]' golden:
- '![[marsh-4.png]]'
rarity: Common
type: Nature
requestor: Ategon
--- ---
To be added

View file

@ -8,7 +8,12 @@ variant2:
variant3: variant3:
- '![[sunflower-3.png]]' - '![[sunflower-3.png]]'
- '[[Blanchister]]' - '[[Blanchister]]'
golden: '![[sunflower-4.png]]' golden:
- '![[sunflower-4.png]]'
- Everywhere
rarity: Common
type: Nature
requestor: GGlitchedOut
--- ---
To be added

Some files were not shown because too many files have changed in this diff Show more