11ty / eleventy-plugin-rss

A pack of Eleventy plugins for generating an RSS feed.
https://www.11ty.dev/docs/plugins/rss/
MIT License
92 stars 22 forks source link

Add WebC support #39

Open darthmall opened 1 year ago

darthmall commented 1 year ago

Add utility functions as JavaScript template functions for easy use from WebC. Possibly even provide a WebC component for ease of use? Rather than copying and pasting XML from the docs into a Nunjucks file, it’d be cool to be able to do something like:

---
permalink: /feed.xml
---
<atom-feed
  @base="site.url"
  @title="site.title"
  @subtitle="site.subtitle"
  @entries="collections.all"
  webc:import="npm:@11ty/eleventy-plugin-rss"
></atom-feed>
zachleat commented 3 weeks ago

Related: #47