How to check spellings and Autocorrect the wrong spelling by json (wordlist is in json format) in html -


how check spellings of paragraph , autocorrect wrong spelling json (wordlist in json format) , print in new table after correcting in html

mydataj.json

{ "description": "common english words.", "commonwords": [ "a", "able", "about", "absolute", "accept", "account", "achieve", "across", "act", "active", "actual", "add", "address", "admit", ] }

you can use these libraries after parsing json file spellcheck.

or can write own spellchecking library , use work. http://norvig.com/spell-correct.html


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -