Metadata-Version: 2.1
Name: mkdocs-spellcheck
Version: 0.1.0
Summary: A spell checker plugin for MkDocs.
License: UNKNOWN
Author-email: Timothée Mazzucotelli <pawamoy@pm.me>
Requires-Python: >=3.7
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Project-URL: Changelog, https://pawamoy.github.io/mkdocs-spellcheck/changelog
Project-URL: Discussions, https://github.com/pawamoy/mkdocs-spellcheck/discussions
Project-URL: Documentation, https://pawamoy.github.io/mkdocs-spellcheck
Project-URL: Funding, https://github.com/sponsors/pawamoy
Project-URL: Gitter, https://gitter.im/mkdocs-spellcheck/community
Project-URL: Homepage, https://pawamoy.github.io/mkdocs-spellcheck
Project-URL: Issues, https://github.com/pawamoy/mkdocs-spellcheck/issues
Project-URL: Repository, https://github.com/pawamoy/mkdocs-spellcheck
Description-Content-Type: text/markdown
Description: # MkDocs SpellCheck
        
        [![ci](https://github.com/pawamoy/mkdocs-spellcheck/workflows/ci/badge.svg)](https://github.com/pawamoy/mkdocs-spellcheck/actions?query=workflow%3Aci)
        [![documentation](https://img.shields.io/badge/docs-mkdocs%20material-blue.svg?style=flat)](https://pawamoy.github.io/mkdocs-spellcheck/)
        [![pypi version](https://img.shields.io/pypi/v/mkdocs-spellcheck.svg)](https://pypi.org/project/mkdocs-spellcheck/)
        [![gitpod](https://img.shields.io/badge/gitpod-workspace-blue.svg?style=flat)](https://gitpod.io/#https://github.com/pawamoy/mkdocs-spellcheck)
        [![gitter](https://badges.gitter.im/join%20chat.svg)](https://gitter.im/mkdocs-spellcheck/community)
        
        A spell checker plugin for MkDocs.
        
        ## Requirements
        
        MkDocs SpellCheck requires Python 3.7 or above.
        
        <details>
        <summary>To install Python 3.7, I recommend using <a href="https://github.com/pyenv/pyenv"><code>pyenv</code></a>.</summary>
        
        ```bash
        # install pyenv
        git clone https://github.com/pyenv/pyenv ~/.pyenv
        
        # setup pyenv (you should also put these three lines in .bashrc or similar)
        export PATH="${HOME}/.pyenv/bin:${PATH}"
        export PYENV_ROOT="${HOME}/.pyenv"
        eval "$(pyenv init -)"
        
        # install Python 3.7
        pyenv install 3.7.12
        
        # make it available globally
        pyenv global system 3.7.12
        ```
        </details>
        
        ## Installation
        
        With `pip`:
        ```bash
        pip install mkdocs-spellcheck
        ```
        
        With [`pipx`](https://github.com/pipxproject/pipx):
        ```bash
        python3.7 -m pip install --user pipx
        pipx install mkdocs-spellcheck
        ```

