Skip to main content

A Pelican plugin for rule-based addition of classes to your content

Project description

pelican-decorate-content

A Pelican plugin for rule-based addition of classes to your content. This can be useful when you use a functional CSS toolset (e.g. Tachyons) to style your site and do not want to write custom CSS targeting your content.

Installation

Install from PyPi:

pip install pelican_decorate_content

Usage

In your pelicanconf.py import the plugin and add it to PLUGINS:

from pelican_decorate_content import decorate_content

# ...

PLUGINS = [decorate_content]

Configuration

Global settings

Global configuration happens in a DECORATE_CONTENT setting, which is a dict that maps CSS selectors to a list of classes that will be added to each match:

DECORATE_CONTENT = {
    'h1': ['f2', 'normal', 'lh-title', 'mt3', 'ma0', 'mb3'],
    'h2': ['f25', 'normal', 'lh-title', 'mt4', 'ma0', 'mb3'],
    'h3': ['f5', 'normal', 'mt5', 'ma0', 'mb3'],
    'h4': ['f5', 'normal', 'mt4', 'ma0', 'mb1'],
    'h5': ['f5', 'normal', 'mt2', 'ma0', 'mb1'],
    'h6': ['f5', 'lh-solid', 'normal', 'ma0', 'light-silver'],
}

Overrides on article or page level

Overrides for these global defaults can be added in your article or page's front matter by defining a JSON string as decorate_content:

decorate_content: '{"h1": ["f3", "bold"]}' # this overrides the entire key

License

Copyright 2020 Frederik Ring - Available under the MIT License

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_decorate_content-0.1.0.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

pelican_decorate_content-0.1.0-py3-none-any.whl (3.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