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

al_ext_posts imports and renders external posts for al-folio v1.x and compatible Jekyll sites.

Installation

gem 'al_ext_posts'
plugins:
  - al_ext_posts

Usage

Configure 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"

Supported source types:

  • RSS feeds (rss_url)
  • Manual URL entries (posts with url + published_date)

Ecosystem context

  • Starter demo content/wiring lives in al-folio.
  • External post ingestion logic is owned here.

Contributing

Parser/source behavior changes should be contributed in this repository.