Skip to content

Commit a0451c3

Browse files
committed
Update README for scoped package
1 parent 421bb84 commit a0451c3

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,35 @@
11
# CodeMirror Spell Checker
22
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.
33

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)
513

614
![Screenshot](http://i.imgur.com/7yb5Nne.png)
715

816
## Install
917

1018
Via [npm](https://www.npmjs.com/package/codemirror-spell-checker).
1119
```
12-
npm install codemirror-spell-checker --save
20+
npm install @edemaine/codemirror-spell-checker --save
1321
```
1422

1523
Via [bower](https://www.bower.io).
1624
```
17-
bower install codemirror-spell-checker --save
25+
bower install @edemaine/codemirror-spell-checker --save
1826
```
1927

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.*
2129

2230
```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>
2533
```
2634

2735
## Quick start

0 commit comments

Comments
 (0)