mirror of https://github.com/status-im/codimd.git
Merge pull request #1574 from santigl/spellcheck-en-gb-dict
Spellcheck: add en_GB dictionary
This commit is contained in:
commit
cebd5e7da9
|
@ -5403,6 +5403,12 @@
|
|||
"resolved": "https://registry.npmjs.org/dictionary-de-ch/-/dictionary-de-ch-2.0.3.tgz",
|
||||
"integrity": "sha512-+eqpz5j8WONSzxmc4avCN4XX/6q5+J6JfWz2AaluZIOVNgXPxUjXBhKS73+nRhM3nE1pGeRMqkyZevTQWgYTTw==",
|
||||
"dev": true
|
||||
},
|
||||
"dictionary-en-gb": {
|
||||
"version": "2.2.2",
|
||||
"resolved": "https://registry.npmjs.org/dictionary-en-gb/-/dictionary-en-gb-2.2.2.tgz",
|
||||
"integrity": "sha512-36Pz/2BGmJfXtAo5+IGOi+U6gwtxFsFXFJMOX0FC1z2YeLd1IXkxsfAhieC06OrdGie3SqCZmUOYeYgct5Hzzw==",
|
||||
"dev": true
|
||||
},
|
||||
"diff": {
|
||||
"version": "3.5.0",
|
||||
|
|
|
@ -121,6 +121,7 @@
|
|||
"dictionary-de": "^2.0.3",
|
||||
"dictionary-de-at": "^2.0.3",
|
||||
"dictionary-de-ch": "^2.0.3",
|
||||
"dictionary-en-gb": "^2.2.2",
|
||||
"doctoc": "~1.4.0",
|
||||
"ejs-loader": "~0.3.1",
|
||||
"exports-loader": "~0.7.0",
|
||||
|
|
|
@ -18,6 +18,18 @@ export const supportLanguages = [
|
|||
cdnUrl: `${serverurl}/vendor/codemirror-spell-checker/en_US.dic`
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'English (United Kingdom)',
|
||||
value: 'en_GB',
|
||||
aff: {
|
||||
url: `${serverurl}/build/dictionary-en-gb/index.aff`,
|
||||
cdnUrl: 'https://cdn.jsdelivr.net/npm/dictionary-en-gb@2.2.2/index.aff'
|
||||
},
|
||||
dic: {
|
||||
url: `${serverurl}/build/dictionary-en-gb/index.dic`,
|
||||
cdnUrl: 'https://cdn.jsdelivr.net/npm/dictionary-en-gb@2.2.2/index.dic'
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'German',
|
||||
value: 'de',
|
||||
|
|
|
@ -181,6 +181,11 @@ module.exports = {
|
|||
from: '*',
|
||||
to: 'dictionary-de-ch/'
|
||||
},
|
||||
{
|
||||
context: path.join(__dirname, 'node_modules/dictionary-en-gb'),
|
||||
from: '*',
|
||||
to: 'dictionary-en-gb/'
|
||||
},
|
||||
{
|
||||
context: path.join(__dirname, 'node_modules/leaflet'),
|
||||
from: 'dist',
|
||||
|
|
Loading…
Reference in New Issue