HubPress / hubpress.io

A web application to build your blog on GitHub
MIT License
2.81k stars 2.62k forks source link

No Spellcheck in Editor #165

Open scottdarch opened 9 years ago

scottdarch commented 9 years ago

I've tried Firefox and Chrome on osX Yosemite and neither will spell check the text in the editor. This is a huge hindrance to usability.

sasindumendis commented 9 years ago

This is because CodeMirror is used as the editor I guess. Otherwise spell checking can be enabled like so <div contenteditable="true" spellcheck="true">. Obviously spellcheck attribute also works on text inputs, textareas etc as well.

Kif11 commented 8 years ago

@sasindumendis What is a proper way to make it persistent? I found this in app.js but it's minified.

anthonny commented 8 years ago

@Kif11 i will look to add this plugin https://github.com/NextStepWebs/codemirror-spell-checker

Kif11 commented 8 years ago

@anthonny What about spellcheck attribute suggested by @sasindumendis?

anthonny commented 8 years ago

The answer is here https://github.com/codemirror/CodeMirror/issues/1017#issuecomment-96103927

jaredmorgs commented 7 years ago

I think we should allow tools like Grammarly work as well. It is a very good grammar linter that works in modern browsers.

Allow users to select the browser linter they prefer. I can write a Knowledgebase article about it.

Is the editor still codemirror with the new vue2 based system?