I just noticed that Peppy doesn't handle words with apostrophes
correctly. Try:
wouldn't
for instance. I suspect it's because you are breaking on all
non-letters, and thus passing: "wouldn" to enchant, which, of course, is
not a word.
-Chris
--
Christopher Barker, Ph.D.
Oceanographer
Emergency Response Division
NOAA/NOS/OR&R (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception
Yep, I've noticed that before but I've been lazy.
The naive approach is to make a special case for English and check for
the presence of at 't' after a single quote, but I don't know enough
about other languages to know if there is an i18n way to fix that? I
mean, some way to determine, based on the current locale or dictionary
language, if there exists a set of non-alphabetic characters that can
be valid in a dictionary word?
Rob