Git Product home page Git Product logo

enchant's Introduction

libenchant -- Generic spell checking library
Original author: Dom Lachowicz

libenchant is licensed under the terms of the GNU LGPL (see the file
COPYING.LIB), with a special exception allowing the use of proprietary
spell-checking systems.

Enchant aims to provide a simple but comprehensive abstraction for dealing
with different spell checking libraries in a consistent way. A client, such
as a text editor or word processor, need not know anything about a specific
spell-checker, and since all back-ends are plugins, new spell-checkers can
be added without needing any change to the program using Enchant.

Enchant can be configured by the user, who can even add spell-checker
plugins if desired.

Enchant currently works with the following spell-checkers:

    * Hunspell (formerly Myspell)
    * GNU Aspell
    * Hspell
    * Voikko
    * Apple Spell (macOS only)
    * Zemberek

Enchant is written in C and C++, and its only external dependency is glib.

Enchant bindings are supplied for C and C++; there are third-party bindings
for:

Python: http://pythonhosted.org/pyenchant/
Ruby: https://github.com/pennyapp/ruby-enchant
Go: http://pythonhosted.org/pyenchant/


Sharing personal word lists between spell-checkers
--------------------------------------------------

It is possible, and usually safe, to share Enchant’s personal word lists
with other spelling checkers that use the same format (a simple plain text
file with one word per line). The spell-checkers known to be compatible are
Hunspell and Ispell. (Although Enchant does not support Ispell as a
back-end, it’s still fine to share word lists with it.) Other spell-checkers
supported by Enchant are either incompatible, or have no personal word list
mechanism. There may well be yet other spell-checkers, unknown to Enchant,
that use the same format.

Some applications use Hunspell, but store the personal word list under
another name or in another location. Firefox is one example. Firefox also
seems to reorder its word list when updating it; again, this is OK, as the
result is still in the same format.

To share word lists with Enchant, find the other spelling checker’s word
list file, e.g. ~/.hunspell_fr_FR, and merge it with the corresponding
Enchant file, in this case ~/.config/enchant/fr_FR.dic (on a GNU or BSD
system). Use the following command, replacing ENCHANT-DICT and OTHER-DICT
with the corresponding dictionary file names:

cat ENCHANT-DICT OTHER-DICT | sort -u > merged.txt

Take a look at merged.txt to check the merge has worked, then

mv merged.txt ENCHANT-DICT
rm OTHER-DICT
ln -s OTHER-DICT ENCHANT-DICT

to replace the other dictionary file with a link to the Enchant dictionary,
again filling in the name of the dictionary files.


Bug reports and development
---------------------------

To report libenchant bugs or request features, please visit
https://github.com/AbiWord/enchant

If you can't use GitHub, you can use the (low-traffic) AbiWord-devel list.
To subscribe send a mail to:

	[email protected]

and in the body of the message write "subscribe"

An archive of the mailing lists is available at:

	http://www.abisource.com/mailinglists/abiword-dev/


Enchant has taken insight from GNU Aspell: http://aspell.net

enchant's People

Contributors

domlachowicz avatar rrthomas avatar uwog avatar hfiguiere avatar rseabra avatar fidencio avatar springermac avatar tingping avatar heirecka avatar refoyl avatar stek29 avatar

Watchers

bardWong avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.