Skip to main content

Pelican plugin to add footnotes to articles and pages

Project description

Theme Configuration: A Plugin for Pelican

Build Status PyPI Version

This package provides a plugin for the Pelican static website generator and adds support for themes to adjust Pelican's configuration using the themeconf.py file located in the root directory of the theme.

Installation

This plugin can be installed via:

python -m pip install pelican-theme-config

Usage

Add theme_config to the list of plugins in the pelicanconf.py file, e.g.

PLUGINS = [ "theme_config" ]

From that point on, Pelican will try to load the themeconf.py from theme's directory.

Overview

This plugin allows theme authors to create more self-contained themes since everything that a theme requires can be configured within the theme itself:

  • themes can be shipped with their own plugins
  • themes can provide their static content (e.g. a theme that implements Google's PWA can provide manifest.json that should be put into the root of the website)
  • basically, authors could do almost anything :) since with this plugin theme gets control

The code is hooked up early in Pelican's start-up sequence leveraging the "initialized" Pelican event, so almost every configuration option can be safely redefined and would take effect.

However, since the plugin hooks up after the sanity checks on the provided configuration were done by Pelican this gives some opportunities and risks. Basically, theme authors should be careful to adhere to Pelican's conventions on the configuration directives, otherwise they may confuse their users.

This plugin protects the following configuration options from being modified by the theme:

  • BIND
  • CACHE_PATH
  • PATH
  • PELICAN_CLASS
  • OUTPUT_PATH
  • SITEURL
  • THEME
  • THEME_CONFIG
  • THEME_CONFIG_PROTECTED
  • PORT

This list can be configured by the end user in pelicanconf.py if they want to restrict it even further or make it more relaxed. The goal is to give the user the ability to define the expected behaviour for their configuration.

The plugin introduces the following configuration options one can specify in the primary Pelican configuration file:

# The name of the file to lookup in theme's directory
THEME_CONFIG = "themeconf.py"

# The list of configuration options to be protected from modification
THEME_CONFIG_PROTECTED = ["PATH","OUTPUT_PATH"]

Contributing

Contributions are welcome and much appreciated. Every little bit helps. You can contribute by improving the documentation, adding missing features, and fixing bugs. You can also help out by reviewing and commenting on existing issues.

To start contributing to this plugin, review the Contributing to Pelican documentation, beginning with the Contributing Code section.

Credits

Authored by Dmitry Khlebnikov.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pelican_theme_config-2.0.2.tar.gz (5.8 kB view hashes)

Uploaded Source

Built Distribution

pelican_theme_config-2.0.2-py3-none-any.whl (5.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page