Spellcheck plugin for Pelican using PyEnchant.
This plugin only requires PyEnchant. See PyEnchant for installation instructions.
Add enchantedpelican
to your list of PLUGINS
in your pelicanconf.py
.
PLUGINS = ['enchantedpelican']
Optionally, provide some extra settings
ENCHANTED_PELICAN_SETTINGS = {
'wordfile': '/path/to/word/file.txt',
'languange': 'en_US'
}