feature: checking spell and autocorrect spell
See original GitHub issuechecking spell and autocorrect spell
just like write in Page
, if you type the wrong word, the recommended words will be shown below.
Steps to reproduce
It’s a new feature.
Versions
- Mark Text: master
- OS: all platforms.
IssueHunt Summary
fxha has been rewarded.
Backers (Total: $5.00)
boostio ($5.00)
Submitted pull Requests
Tips
- Checkout the Issuehunt explorer to discover more funded issues.
- Need some help from other developers? Add your repositories on IssueHunt to raise funds.
IssueHunt has been backed by the following sponsors. Become a sponsor
Issue Analytics
- State:
- Created 5 years ago
- Reactions:10
- Comments:15 (13 by maintainers)
Top Results From Across the Web
Use the Grammar and Spell Check feature - Adobe Support
Grammar and spell check addresses the spelling issues and simplifies the experience by building your dictionary, managing your ignored words ...
Read more >Check spelling and grammar in Office - Microsoft Support
Spell check documents manually or automatically as you type, or turn spell check off. Run grammar and spell checker manually to proof your...
Read more >Turn Chrome spell check on and off - Google Support
Spell check helps you review and correct your spelling on your devices. You can check for spelling errors on your computer when you...
Read more >What is Spell Check? - Definition & Use - Study.com
Word's spell check function is set to automatically check your spelling while you type. Errors in your document will have color-coded underlines ...
Read more >Word 2016: Checking Spelling and Grammar - GCF Global
Using spell check in Word can prevent errors from appearing. Use the Word spell check function to produce error-free Word documents.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
electron-hunspell
it looks good, I don’t have a specific idea about which library the spell checker uses, but for the interface, hope is like this.Another approach to spell checking would be to use an external service like https://languagetool.org ; I spent a while thinking about how to integrate it but the issue I’m running into is how to produce a source map that can indicate where in the editor to show the spelling errors.
It’s not so hard to go from the existing markdown -> html using
marked
and then extract the text nodes from that to send to the service. Supposing you do this to grab a string, what you get back is a big object of issues, each of which occurs at a location. Getting back from that location to a location in the editor seems non-trivial.@fxha or @jocs could you provide any ideas as to how to do this?