pelican-add-css-classes 1.0.4

Creator: railscoder56

Last updated:

Add to Cart

Description:

pelicanaddcssclasses 1.0.4

Add css classes: A Plugin for Pelican
Adds CSS classes to html tags in Pelican documents
Motivation
When we want to create a page or article we often use Markdown or RST. This allows us to
write content very fast, but it gives us little to no control over the styling of our page.
That is why I created this plugin for Pelican so we can add classes to HTML elements
inside pelicanconf.py.
Usage
Both pages and articles
To set css classes that should be added to elements in both
pages and articles you can use ADD_CSS_CLASSES.
You can also set which css classes should be added to elements
on pages with ADD_CSS_CLASSES_TO_PAGE.
And this can also be done with articles using ADD_CSS_CLASSES_TO_ARTICLE.
Example
Let's say you want to configure all tables to use Bootstrap, show black tables on pages
and red headers on articles.
ADD_CSS_CLASSES = {
"table": ["table"]
}

ADD_CSS_CLASSES_TO_PAGE = {
"table": ["table", "table-dark"]
}

ADD_CSS_CLASSES_TO_ARTICLE = {
"h1": ["text-danger"]
}

Installation
This plugin can be installed via:
pip install pelican-add-css-classes

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.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.