nspell icon indicating copy to clipboard operation
nspell copied to clipboard

πŸ“ Hunspell compatible spell-checker

Results 6 nspell issues
Sort by recently updated
recently updated
newest added

Hi, thanks for the wonderful library. The Italian (also Portuguese) languages hang my app that uses nspell. Is there anything new on that front (there is a closed issue on...

I have absolutely no idea how the `.dic` format works, all I can say is that practically any infinitve german word is marked as misspelt when using this in retext-spell....

node 12.10.x nspell 2.1.2 I'm not sure if this is a bug or my misinterpretation of the documentation. Adding extra dictionaries via `new nspell([{aff: mainaff_buff, dic: maindic_buff}, {dic: extradic_buff}])`, or...

### Description nspell sometimes fails to add words to the German dictionary (taken from wooorm/dictionaries). The gist of the bug is that nspell fails to add words to the German...

Hi there, Wondering how to fix a strange behaviour : when we ask for a suggestion on a mispelled accentued word (ex: `chomage` instead of `chΓ΄mage`) the first suggestion is...

``` var dictionary = require('dictionary-ko'); var nspell = require('nspell'); dictionary(ondictionary); function ondictionary(err, dict) { if (err) { throw err } var spell = nspell(dict); console.log(spell.correct('hello')); } ```