Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pelican-plugins/series
Series is a Pelican plugin that joins multiple posts into a series
https://github.com/pelican-plugins/series
pelican pelican-plugin
Last synced: 3 months ago
JSON representation
Series is a Pelican plugin that joins multiple posts into a series
- Host: GitHub
- URL: https://github.com/pelican-plugins/series
- Owner: pelican-plugins
- Created: 2020-08-26T16:13:10.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-29T11:06:42.000Z (9 months ago)
- Last Synced: 2024-04-29T22:59:47.967Z (9 months ago)
- Topics: pelican, pelican-plugin
- Language: Python
- Homepage:
- Size: 66.4 KB
- Stars: 10
- Watchers: 4
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
- awesome-pelican - series - series)](https://pypi.org/project/pelican-series/) | [pelican-plugins](https://github.com/pelican-plugins) | Series is a Pelican plugin that joins multiple posts into a series (Plugins / Migrated to new architecture)
- awesome - pelican-plugins/series - Series is a Pelican plugin that joins multiple posts into a series (Python)
README
Series: A Plugin for Pelican
============================[![Build Status](https://img.shields.io/github/actions/workflow/status/pelican-plugins/series/main.yml?branch=main)](https://github.com/pelican-plugins/series/actions)
[![PyPI Version](https://img.shields.io/pypi/v/pelican-series)](https://pypi.org/project/pelican-series/)
[![Downloads](https://img.shields.io/pypi/dm/pelican-series)](https://pypi.org/project/pelican-series/)
![License](https://img.shields.io/pypi/l/pelican-series?color=blue)Series is a Pelican plugin that joins multiple posts into a series. Globally, it provides a list of all the series, and for each article it provides a list of all articles in the same series and links to the next and previous articles in the series.
Installation
------------This plugin can be installed via:
python -m pip install pelican-series
As long as you have not explicitly added a `PLUGINS` setting to your Pelican settings file, then the newly-installed plugin should be automatically detected and enabled. Otherwise, you must add `series` to your existing `PLUGINS` list. For more information, please see the [How to Use Plugins](https://docs.getpelican.com/en/latest/plugins.html#how-to-use-plugins) documentation.
Usage
-----In order to mark reStructuredText-formatted posts as part of a series, use the `:series:` metadata:
:series: NAME_OF_THIS_SERIES
Or, for Markdown-formatted content:
Series: NAME_OF_THIS_SERIES
The plugin collects all articles or pages belonging to the same series and provides series-related variables that you can use in your template.
Articles and pages
------------------This plugin works both with articles and pages. As Pelican uses the specific variable `article` for article templates and `page` for page templates it is complicated to give examples that work for both cases. In the following documentation all example will mention `article.` (e.g. `article.series`, `article.title`) but the code works in the same way with `page` (e.g. `page.series`, `page.title`).
Article series and page series are created separately, so even if an article and a page have the same series they won't appear together.
Indexing
--------By default, articles in a series are ordered by date and then automatically numbered. Pages in a series are ordered by title and automatically numbered.
If you want to force a given order, specify `:series_index:` (reST) or `series_index:` (Markdown) in the article metadata, starting from 1. All articles with this enforced index are put at the beginning of the series and ordered according to the index itself. All the remaining articles come after them, ordered with the default ordering (date for articles and title for pages).
The plugin provides the following variables to your templates:
* `article.series.name` is the name of the series as specified in the article metadata
* `article.series.index` is the index of the current article inside the series
* `article.series.all` is an ordered list of all articles in the series (including the current one)
* `article.series.all_previous` is an ordered list of the articles published before the current one
* `article.series.all_next` is an ordered list of the articles published after the current one
* `article.series.previous` is the previous article in the series (a shortcut to `article.series.all_previous[-1]`) or `None` for the first article
* `article.series.next` is the next article in the series (a shortcut to `article.series.all_next[0]`) or `None` for the last oneFor example:
```html+jinja
{% if article.series %}
This post is part {{ article.series.index }} of the "{{ article.series.name }}" series:
{% for part_article in article.series.all %}
{{ part_article.title }}
{% endfor %}
{% endif %}
```Global Context
--------------**Warning**: in version 3 the global key `series` has been renamed to `article_series` to differentiate it from the new global key `page_series`.
The plugin also adds the keys `article_series` and `page_series` to the global context. They are dictionaries of all series names (as keys) and items (as values). You can use that to list all the series in your site, for example
```html+jinja
{% for series_name, series_articles in series.items() %}
{% set article = series_articles[0] %}{% endfor %}
```As it is not possible to create pages from plugins you can leverage it to create a page for a specific series, even though you have to hard code the name of the series in the template.
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.
[existing issues]: https://github.com/pelican-plugins/series/issues
[Contributing to Pelican]: https://docs.getpelican.com/en/latest/contribute.htmlLicense
-------This project is licensed under the AGPL 3.0 license.