You are not logged in.
I got the spellchecker installed and working however there are some quirks I don't know how to fix.
1) It finds the forced space   to be a misspelled word. And I cannot add it to the dictionary
2) Image files get very messed up by, for some reason, automatically changing <img to <span class= then it starts changng the quotes and such.
Offline
I had the same problem with images - it was something to do with spaces or special characters in the alt/title tags... I can't remember. But I tinkered with the javascript as follows and it (sort-of) fixed it:
in spell-check-ui.js
function makeCleanDoc() - added right after the html var is set:
html=html.replace(/(<img[^>]*|<a[^>]*)(\stitle|\salt)x=/ig,"$1$2"+"=");
function initDocument() - added right after the html var is set:
html=html.replace(/(<img[^>]*|<a[^>]*)(\stitle|\salt)=/ig,"$1$2"+"x=");
But now it doesn't check title/alt for spelling.
I think the problem was buried in the PHP library (rather than the Xinha cgi files I can edit), so I just gave up on properly fixing it.
I never have a problem with , so I can't help with that one.
Offline