vault backup: 2022-11-25 13:18:18
This commit is contained in:
7
.obsidian/plugins/obsidian-linter/data.json
vendored
7
.obsidian/plugins/obsidian-linter/data.json
vendored
@@ -159,9 +159,6 @@
|
||||
"Space after list markers": {
|
||||
"There should be a single space after list markers and checkboxes.": false
|
||||
},
|
||||
"Space between Chinese and English or numbers": {
|
||||
"Ensures that Chinese and English or numbers are separated by a single space. Follows these [guidelines](https://github.com/sparanoid/chinese-copywriting-guidelines)": false
|
||||
},
|
||||
"Trailing spaces": {
|
||||
"Removes extra spaces after every line.": false,
|
||||
"Two Space Linebreak": false
|
||||
@@ -199,6 +196,9 @@
|
||||
},
|
||||
"Remove Multiple Blank Lines on Paste": {
|
||||
"Condenses multiple blank lines down into one blank line for the text to paste": false
|
||||
},
|
||||
"Space between Chinese Japanese or Korean and English or numbers": {
|
||||
"Ensures that Chinese, Japanese, or Korean and English or numbers are separated by a single space. Follows these [guidelines](https://github.com/sparanoid/chinese-copywriting-guidelines)": false
|
||||
}
|
||||
},
|
||||
"lintOnSave": false,
|
||||
@@ -207,6 +207,7 @@
|
||||
"linterLocale": "system-default",
|
||||
"logLevel": 4,
|
||||
"lintCommands": [],
|
||||
"customRegexes": [],
|
||||
"commonStyles": {
|
||||
"aliasArrayStyle": "single-line",
|
||||
"tagArrayStyle": "single-line",
|
||||
|
||||
324
.obsidian/plugins/obsidian-linter/main.js
vendored
324
.obsidian/plugins/obsidian-linter/main.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-linter",
|
||||
"name": "Linter",
|
||||
"version": "1.7.1",
|
||||
"version": "1.8.0",
|
||||
"minAppVersion": "0.15.6",
|
||||
"description": "Formats and styles your notes. It can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular markdown contents like list, italics, and bold styles; and more with the use of custom rule options as well.",
|
||||
"author": "Victor Tao",
|
||||
|
||||
7
.obsidian/plugins/obsidian-linter/styles.css
vendored
7
.obsidian/plugins/obsidian-linter/styles.css
vendored
@@ -128,17 +128,16 @@
|
||||
/** Hide linter element css
|
||||
* Based on https://zellwk.com/blog/hide-content-accessibly/
|
||||
*/
|
||||
|
||||
.linter-navigation-item:not(.linter-navigation-item-selected) > span:nth-child(2),
|
||||
.linter-visually-hidden {
|
||||
border: 0;
|
||||
clip: rect(0 0 0 0);
|
||||
clip-path: rect(0 0 0 0);
|
||||
height: auto; /* new - was 1px */
|
||||
margin: 0; /* new - was -1px */
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
white-space: nowrap; /* 1 */
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user