DEV Community

Justin Ribeiro
Justin Ribeiro

Posted on • Originally published at justinribeiro.com on

Improving RSS Reader Support and Adding New Topic Feeds

With my recent foray into more widespread writing topics, I decided it was time to revisit the concept of topic specific RSS feeds and tag pages. Yeah, you’re not going to get the nitty gritty of some of my more personal posts, but hey, at least maybe you’ll keep on reading the content you find is relevant for you.

Available now (and in the blog-pwa codebase) are a new set of topic specific pages and feeds listed on the tags page and accessible from the home page or the archive. Topics currently include:

  1. 🕸️ Web Dev, Web Perf, and Web Platform Articles
  2. 🥽 Internet of Things (IoT) Articles
  3. 📷 Photography Articles and Prints
  4. 👔 Management and Business Articles
  5. 👨 Personal Articles

Under the hood, there was actually not a great deal of change required for this.

Handling tag generation in Hugo

The tags are generated via Hugo in a similar fashion to how I generate all my JSON objects. The biggest difference you’ll find is that the taxonomy defines it’s own RSS template and handles some of the deployment paths via replace and we make our title more specific:

\<channel\> \<title\>{{ .Site.Title }} - {{ .Title }}\</title\> \<description\>{{ .Description }}\</description\> \<link href="{{ replace .Permalink "/tags" "/data/tags" }}index.xml" rel="self"/\> \<link href="{{.Permalink}}"/\> \<language\>en-us\</language\> \<id\>https://justinribeiro.com/\</id\>

Along those lines, instead of just generating a big list of tags which would includes a number of old tagging conventions from my perl/jekyll/wordpress post conversions over the years, I override the /tags/_index.md and simply made a nicely sectioned version for ease of use. I also decided to do this for each of the tag pages within the content folder, again to make things nicer.

In terms of problems within this approach is that fact that every post needs at least one tag. Sure, I could have written some case logic within the hugo templates, but I figured I might as well backfill as much of the missing tags as needed. Turned out, not that many posts to update.

There was also a more wide spread fix applied at this time as well; code-block tags were replaced with pre, allowing better code block rendering for CSS clients (which did not understand the web component obviously). Both tag and overall RSS feeds have this patch, allowing for a much nicer rendering remotely.

Handling the tags in the PWA

This part was actually rather easy because of the structure of existing views. The blog-chronicle.js web component already had a posts array parser, so with a little retrofitting of the data layer, it could now serve to display tags and tag specific pages as well.

At that point, it only required a couple new routes within vaadin-router in the blog-pwa.js web component, and everything worked without a hitch.

No additional JavaScript weight or logic required. You gotta love it when a plan comes together.

Future planning

I’m not sold on only those using those tags (and I really need to clean the old ones, which do properly function still within the Hugo generation and PWA). For now, this will at least give user a chance to pick the right feed for them.

What are you waiting for? Subscribe to a feed or read a tag! You know you want to.

Latest comments (0)