|
1 | 1 | # CodeMirror Spell Checker |
2 | 2 | Spell checking so simple, you can set up in 60 seconds. It will highlight any misspelled words in light red. Works great in conjunction with other CodeMirror modes, like GitHub Flavored Markdown. |
3 | 3 |
|
4 | | -[Demo](http://nextstepwebs.github.io/codemirror-spell-checker/) |
| 4 | +## Fork |
| 5 | + |
| 6 | +This is a fork of [sparksuite's codemirror-spell-checker](https://github.com/sparksuite/codemirror-spell-checker). |
| 7 | + |
| 8 | +Added fixes: |
| 9 | +* Numbers aren't treated as spelling error. |
| 10 | +* 27D isn't treated as a spelling error (for 27 dimensions). |
| 11 | +* Switch to [`hunspell-en_US-large` dictionary](https://sourceforge.net/projects/wordlist/files/speller/2018.04.16/) |
| 12 | + via [NPM package hunspell-dict-en-us](https://www.npmjs.com/package/hunspell-dict-en-us) |
5 | 13 |
|
6 | 14 |  |
7 | 15 |
|
8 | 16 | ## Install |
9 | 17 |
|
10 | 18 | Via [npm](https://www.npmjs.com/package/codemirror-spell-checker). |
11 | 19 | ``` |
12 | | -npm install codemirror-spell-checker --save |
| 20 | +npm install @edemaine/codemirror-spell-checker --save |
13 | 21 | ``` |
14 | 22 |
|
15 | 23 | Via [bower](https://www.bower.io). |
16 | 24 | ``` |
17 | | -bower install codemirror-spell-checker --save |
| 25 | +bower install @edemaine/codemirror-spell-checker --save |
18 | 26 | ``` |
19 | 27 |
|
20 | | -Via [jsDelivr](https://www.jsdelivr.com/projects/codemirror.spell-checker). *Please note, jsDelivr may take a few days to update to the latest release.* |
| 28 | +Via [jsDelivr](https://www.jsdelivr.com/package/npm/@edemaine/codemirror-spell-checker). *Please note, jsDelivr may take a few days to update to the latest release.* |
21 | 29 |
|
22 | 30 | ```HTML |
23 | | -<link rel="stylesheet" href="https://cdn.jsdelivr.net/codemirror.spell-checker/latest/spell-checker.min.css"> |
24 | | -<script src="https://cdn.jsdelivr.net/codemirror.spell-checker/latest/spell-checker.min.js"></script> |
| 31 | +<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@edemaine/codemirror-spell-checker/latest/spell-checker.min.css"> |
| 32 | +<script src="https://cdn.jsdelivr.net/npm/@edemaine/codemirror-spell-checker/latest/spell-checker.min.js"></script> |
25 | 33 | ``` |
26 | 34 |
|
27 | 35 | ## Quick start |
|
0 commit comments