Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 636 Bytes

README.rst

File metadata and controls

31 lines (20 loc) · 636 Bytes

enchanted-pelican

Spellcheck plugin for Pelican using PyEnchant.

Installation

This plugin only requires PyEnchant. See PyEnchant for installation instructions.

Usage

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'
}