forked from Edikoyo/EdikoyoWiki
vault backup: 2024-09-05 15:39:34
This commit is contained in:
parent
33d2002045
commit
1d213d5140
6 changed files with 18852 additions and 8 deletions
3
vault/.obsidian/community-plugins.json
vendored
3
vault/.obsidian/community-plugins.json
vendored
|
@ -1,4 +1,5 @@
|
|||
[
|
||||
"obsidian-git",
|
||||
"iconic"
|
||||
"iconic",
|
||||
"better-word-count"
|
||||
]
|
8
vault/.obsidian/core-plugins-migration.json
vendored
8
vault/.obsidian/core-plugins-migration.json
vendored
|
@ -4,12 +4,12 @@
|
|||
"switcher": true,
|
||||
"graph": true,
|
||||
"backlink": true,
|
||||
"canvas": true,
|
||||
"canvas": false,
|
||||
"outgoing-link": true,
|
||||
"tag-pane": true,
|
||||
"properties": false,
|
||||
"page-preview": true,
|
||||
"daily-notes": true,
|
||||
"daily-notes": false,
|
||||
"templates": true,
|
||||
"note-composer": true,
|
||||
"command-palette": true,
|
||||
|
@ -18,9 +18,9 @@
|
|||
"bookmarks": true,
|
||||
"markdown-importer": false,
|
||||
"zk-prefixer": false,
|
||||
"random-note": false,
|
||||
"random-note": true,
|
||||
"outline": true,
|
||||
"word-count": true,
|
||||
"word-count": false,
|
||||
"slides": false,
|
||||
"audio-recorder": false,
|
||||
"workspaces": false,
|
||||
|
|
4
vault/.obsidian/core-plugins.json
vendored
4
vault/.obsidian/core-plugins.json
vendored
|
@ -4,17 +4,15 @@
|
|||
"switcher",
|
||||
"graph",
|
||||
"backlink",
|
||||
"canvas",
|
||||
"outgoing-link",
|
||||
"tag-pane",
|
||||
"page-preview",
|
||||
"daily-notes",
|
||||
"templates",
|
||||
"note-composer",
|
||||
"command-palette",
|
||||
"editor-status",
|
||||
"bookmarks",
|
||||
"random-note",
|
||||
"outline",
|
||||
"word-count",
|
||||
"file-recovery"
|
||||
]
|
18799
vault/.obsidian/plugins/better-word-count/main.js
vendored
Normal file
18799
vault/.obsidian/plugins/better-word-count/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
9
vault/.obsidian/plugins/better-word-count/manifest.json
vendored
Normal file
9
vault/.obsidian/plugins/better-word-count/manifest.json
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"id": "better-word-count",
|
||||
"name": "Better Word Count",
|
||||
"version": "0.10.1",
|
||||
"description": "Counts the words of selected text in the editor.",
|
||||
"author": "Luke Leppan",
|
||||
"authorUrl": "https://lukeleppan.com",
|
||||
"isDesktopOnly": false
|
||||
}
|
37
vault/.obsidian/plugins/better-word-count/styles.css
vendored
Normal file
37
vault/.obsidian/plugins/better-word-count/styles.css
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
details.bwc-sb-item-setting {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 10px;
|
||||
padding: 10px 5px 20px 10px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.bwc-sb-item-setting summary::marker {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
/* .bwc-sb-item-setting summary { */
|
||||
/* margin-bottom: 5px; */
|
||||
/* } */
|
||||
.bwc-sb-item-setting summary span.bwc-sb-buttons {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.bwc-status-bar-settings-title {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.bwc-section-count {
|
||||
background: var(--background-secondary);
|
||||
border-radius: var(--tag-radius);
|
||||
color: var(--text-muted);
|
||||
content: var(--word-count);
|
||||
display: inline-flex;
|
||||
font-size: var(--font-ui-smaller);
|
||||
font-weight: var(--font-normal);
|
||||
line-height: 1;
|
||||
margin: calc(-1 * var(--size-2-3)) 0 calc(-1 * var(--size-2-3)) var(--size-4-2);
|
||||
padding: var(--size-2-3) var(--size-4-2);
|
||||
pointer-events: none;
|
||||
position: relative;
|
||||
top: -3px;
|
||||
}
|
Loading…
Reference in a new issue