Añadido importacion y exportacion de datos.
This commit is contained in:
17
.obsidian/plugins/languagetool/data.json
vendored
Normal file
17
.obsidian/plugins/languagetool/data.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"serverUrl": "https://api.languagetool.org",
|
||||
"autoCheckDelay": 3000,
|
||||
"shouldAutoCheck": true,
|
||||
"languageVariety": {
|
||||
"en": "en-US",
|
||||
"de": "de-DE",
|
||||
"pt": "pt-PT",
|
||||
"ca": "ca-ES"
|
||||
},
|
||||
"dictionary": [],
|
||||
"syncDictionary": false,
|
||||
"remoteDictionary": [],
|
||||
"pickyMode": false,
|
||||
"longCheckNotification": true,
|
||||
"staticLanguage": "es-ES"
|
||||
}
|
||||
4
.obsidian/plugins/languagetool/main.js
vendored
Normal file
4
.obsidian/plugins/languagetool/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/languagetool/manifest.json
vendored
Normal file
10
.obsidian/plugins/languagetool/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "languagetool",
|
||||
"name": "LanguageTool",
|
||||
"version": "1.4.2",
|
||||
"minAppVersion": "1.8.7",
|
||||
"description": "Unofficial integration of the LanguageTool spell and grammar checker.",
|
||||
"author": "Lars Wrenger, Clemens Ertle",
|
||||
"authorUrl": "https://github.com/wrenger",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
54
.obsidian/plugins/languagetool/styles.css
vendored
Normal file
54
.obsidian/plugins/languagetool/styles.css
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
:root {
|
||||
--lt-minor: #e9b35f;
|
||||
--lt-major: #da615c;
|
||||
--lt-style: #8981f3;
|
||||
}
|
||||
.lt-minor {
|
||||
--lt-highlight: var(--lt-minor)
|
||||
}
|
||||
.lt-major {
|
||||
--lt-highlight: var(--lt-major)
|
||||
}
|
||||
.lt-style {
|
||||
--lt-highlight: var(--lt-style)
|
||||
}
|
||||
|
||||
.lt-settings-grid {
|
||||
display: inline-grid;
|
||||
}
|
||||
.lt-dictionary-words {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.lt-menu-info {
|
||||
max-width: 200px;
|
||||
}
|
||||
.lt-menu-message {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
.lt-menu-title + .lt-menu-message {
|
||||
margin-top: 5pt;
|
||||
}
|
||||
|
||||
.lt-status-bar-btn {
|
||||
cursor: pointer;
|
||||
&:hover {
|
||||
background-color: var(--background-modifier-hover);
|
||||
}
|
||||
}
|
||||
|
||||
.lt-loading > svg {
|
||||
animation-name: spin;
|
||||
animation-duration: 1s;
|
||||
animation-iteration-count: infinite;
|
||||
animation-timing-function: linear;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user