codemirror-spell-checker
codemirror-spell-checker copied to clipboard
Dead-simple spell checking in CodeMirror
It would be nice if one could spell check different languages...
Using the French dic and aff files from https://github.com/titoBouzout/Dictionaries/tree/master, I noticed that a lot of very common words are shown as misspelled. Example: "je". In the dic file, this is...
Hi, I added an option to disable spell checking for code blocks in GFM. Usage: ```javascript CodeMirrorSpellChecker({ codeMirrorInstance: CodeMirror, ignoreCodeBlocks: true }); ```
This is a fix for #32. I just check whether the word matches `/^[0-9]+$/` and ignore it if so. Along the way, I cleaned up the tokenizer to use regular...
Currently the digits 0 through 9 do not show as errors, but anything 10 or higher does. Either number highlighting as errors should show according to the rules for writing...
This pull request aims to address: - sparksuite/codemirror-spell-checker#16 - sparksuite/simplemde-markdown-editor#658 Read the README to understand how it works
I created it for my [Markdown editor](https://github.com/terrylinooo/githuber-md) project. You can consider to use it too. The URL is https://spellcheck-dictionaries.github.io/
This is what I have in ``: ``` ``` This fails with error `ReferenceError: require is not defined` due to an attempt to require `typo-js`. What I understand is that...
[jsDelivr switched to a fully automated system](https://www.jsdelivr.com/features), that can serve files from npm and GitHub. This means all future releases will be available automatically, but will use a new link...
when loading an initial text into CM with cm.setValue(), how can I run the spellchecker on it ? thx!