0.0
The project is in a healthy, maintained state
Jekyll plugin extracted from al-folio that imports external posts from RSS feeds or explicit URLs, with support for default tags and categories per source.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

>= 2.0, < 3.0
~> 13.0

Runtime

>= 3.2, < 5.0
>= 0.18, < 1.0
>= 3.9, < 5.0
>= 1.13, < 2.0
 Project Readme

Al-Ext-Posts

A Jekyll plugin that allows you to fetch and display external blog posts from RSS feeds and specific URLs in your Jekyll site.

Installation

Add this line to your Jekyll site's Gemfile:

gem 'al_ext_posts'

And then execute:

$ bundle install

Usage

  1. Add the plugin to your site's _config.yml:
plugins:
  - al_ext_posts
  1. Configure your external sources in _config.yml:
external_sources:
  - name: "My Blog"
    rss_url: "https://myblog.com/feed.xml"
    categories: ["external", "blog"]
    tags: ["rss", "updates"]
  - name: "Another Source"
    categories: ["external"]
    tags: ["manual-curation"]
    posts:
      - url: "https://example.com/post1"
        published_date: "2024-03-20"
      - url: "https://example.com/post2"
        published_date: "2024-03-21"

The plugin supports two types of sources:

  • RSS feeds: Provide the rss_url parameter
  • Direct URLs: Provide a list of posts with url and published_date

Optional per-source defaults:

  • categories: array of categories automatically applied to imported posts
  • tags: array of tags automatically applied to imported posts

Development

After checking out the repo, run bundle install to install dependencies.

Contributing

Bug reports and pull requests are welcome on GitHub.