Metadata-Version: 2.1
Name: pelican-redirect-url
Version: 0.1.1
Summary: Pelican plugin to redirect to any URL
Home-page: https://github.com/FriedrichFroebel/pelican-redirect-url/
Author: FriedrichFröbel
License: AGPL-3.0
Keywords: pelican,plugin,redirect
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Framework :: Pelican
Classifier: Framework :: Pelican :: Plugins
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: COPYING

# URL Redirection Plugin for Pelican

Pelican plugin for redirecting to URLs.

This Pelican plugin allows you to generate pages which redirect to any URL, using plain HTML.

## Installation

The package is available on PyPI and can be installed using `pip install pelican-redirect-url`.

Alternatively, you may want to install it straight from a source checkout: `python -m pip install .`

## Usage

Include the plugin by adding it to your `pelicanconf.py` and add the `redirect_url` directive to the metadata block of the corresponding page:

```
redirect_url: https://github.com
```

## Credits

This plugin draws some inspiration from the [pelican-redirect](https://github.com/bryanwweber/pelican-redirect) plugin by Bryan Weber. Nevertheless, the target usage of both plugins differs, and so does the implementation.
