Skip to content

πŸ“‡ A growing collection of html2rss feed configs. Generate configs with the handy generator.

License

Notifications You must be signed in to change notification settings

html2rss/html2rss-configs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

html2rss logo

html2rss-configs

✌️ This repository contains html2rss feed configs for many websites. πŸ‘‰ Find all feed configs in the configs/ directory. ☝️ A handy usage method is via html2rss-web. πŸ’ͺ Contributions are more than welcome! Fork this repository, add your feed config and create a pull request.

Contributing

The html2rss "ecosystem" is a community project. We welcome contributions of all kinds. This includes new feed configs, suggesting and implementing features, providing bug fixes, documentation improvements, and any other kind of help.

Adding a new feed config

Which way you choose to add a new feed config is up to you. You can do it manually or risk the "wizard-like" generator. Please submit a pull request!

After you're done, you can test your feed config by running bundle exec html2rss feed lib/html2rss/configs/<domainname.tld>/<path>.yml.

Prefered way: manually

  1. Fork this repo and run bundle install (you need to have Ruby >= 3.1 installed).
  2. Create a new folder and file following ths convention: lib/html2rss/configs/<domainname.tld>/<path>.yml
  3. Create the feed config in the <path>.yml file.
  4. Add this spec file in the spec/html2rss/configs/<domainname.tld>/<path>_spec.rb file.
  RSpec.describe '<domainname.tld>/<path>' do
    include_examples 'config.yml', described_class
  end

Using the "wizard-like" generator

There's was a try to build a wizard like TUI based generator for that! πŸ†’ It hasn't seen much love, tho, but it might gets you going or crash in the middle of the process.

  1. Fork this repo and run bundle install (you need to have Ruby >= 3.1 installed).
  2. Start the generator by typing: bin/generator
  3. Build your feed config and answer 'y' in the last step to create the files.
  4. Optionally, edit the created files. Read html2rss's README to see what is possible or browse existing configs for inspiration.
  5. To test, run: bundle exec html2rss feed lib/html2rss/configs/domainname.tld/whatever

Using dynamic parameters in channel attributes

When you're using dynamic parameters, you have to provide the parameters to the spec, too:

include_examples 'config.yml', 'domainname.tld/whatever.yml', id: 42

CLI usage:

bundle exec html2rss feed lib/html2rss/configs/domainname.tld/whatever id=42

Programmatic usage

Add to your Gemfile:

gem 'html2rss-configs', git: 'https://github.com/html2rss/html2rss-configs.git'

Use it in your code:

require 'html2rss/configs'

config = Html2rss::Configs.find_by_name('domainname.tld/whatever')

This will return the feed config.

Usage with html2rss-web

If you're running html2rss-web, you have nothing more to do! πŸŽ‰ Just request them from your instance at path: /<domainname.tld/path>.rss and you'll be served the RSS.

CI: Building on the CI

Modifying existing or adding new feed configs will trigger the CI to fetch the feed and check for the presence of feed items.