Ask HN: How to spell check HTML pages?
4 comments
[deleted]
Sorta, kinda:
http://spellbound.sourceforge.net/requests
(search for bookmarklet)
The steps seem to be:
1) Install Spellbound
2) Hit the bookmarklet to set the whole page to designMode
3) Start SpellBound
The steps seem to be:
1) Install Spellbound
2) Hit the bookmarklet to set the whole page to designMode
3) Start SpellBound
I found a post where a guy is using a simple javascript call to place the page in designMode and in the latest version of FF the spell checker is invoked. The only catch is you have to visually scan down the page to find your errors (which is tedious if there is lots of text. Would be nice to have a sidebar or floating menu to assist.
Also, the design mode adds in some formatting which is not so great if you're saving it back to the original source.
"javascript:document.body.contentEditable='true';%20document.designMode='on';%20void%200"
Also, the design mode adds in some formatting which is not so great if you're saving it back to the original source.
"javascript:document.body.contentEditable='true';%20document.designMode='on';%20void%200"
If you had read through the top headlines on Hacker News before asking, you would already have the answer: http://spellr.us/
What methods do you use to spell check pages that have mixed code and content (i.e. web templates)