Skip to content

DustinDiazLopez/SpellChecker

Repository files navigation

SpellChecker

An old pet project.

How it works (nothing fancy)

Given an input (e.g., a paragraph), it checks if every word is in an input dictionary (i.e., a list of words) for now, I've only made two dictionaries English and Spanish. If the word is not in the dictionary, it assumes that the word is spelled incorrectly. That is all it does for now.

TODO

  • Create GUI.
  • Perform spellcheck on the inputted text.
  • Style incorrect words in the editor.
  • Ignore e-mails and phone numbers.
  • Fix bug where styling output copies of the inputted text when spellchecked.
  • Suggest a word.
  • Change language.