Metadata-Version: 2.1
Name: mkdocs-autorefs
Version: 0.1.0
Summary: Automatically link across pages in MkDocs.
Home-page: https://github.com/mkdocstrings/autorefs
License: ISC
Keywords: mkdocs,mkdocs-plugin,docstrings,autodoc
Author: Oleh Prypin
Author-email: oleh@pryp.in
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: Jinja2 (>=2.11,<3.0)
Requires-Dist: Markdown (>=3.3,<4.0)
Requires-Dist: MarkupSafe (>=1.1,<2.0)
Requires-Dist: mkdocs (>=1.1,<2.0)
Requires-Dist: pymdown-extensions (>=6.3,<9.0)
Requires-Dist: pytkdocs (>=0.2.0,<0.11.0)
Project-URL: Repository, https://github.com/mkdocstrings/autorefs
Description-Content-Type: text/markdown

# mkdocs-autorefs

[![ci](https://github.com/mkdocstrings/autorefs/workflows/ci/badge.svg)](https://github.com/mkdocstrings/autorefs/actions?query=workflow%3Aci)
[![pypi version](https://img.shields.io/pypi/v/mkdocs-autorefs.svg)](https://pypi.org/project/mkdocs-autorefs/)
[![gitter](https://badges.gitter.im/join%20chat.svg)](https://gitter.im/mkdocstrings/community)

Automatically link across pages in MkDocs.

## Requirements

`mkdocs-autorefs` requires Python 3.6 or above.

<details>
<summary>To install Python 3.6, 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.6
pyenv install 3.6.12

# make it available globally
pyenv global system 3.6.12
```
</details>

## Installation

With `pip`:
```bash
python3.6 -m pip install mkdocs-autorefs
```

