mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-25 08:22:19 +00:00
new draft: prettify-hugo-rss-feed-xslt
This commit is contained in:
parent
4326fee8e6
commit
cd7b032d0b
3 changed files with 25 additions and 0 deletions
25
content/posts/prettify-hugo-rss-feed-xslt/index.md
Normal file
25
content/posts/prettify-hugo-rss-feed-xslt/index.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
title: "Prettify Hugo Rss Feed Xslt"
|
||||
date: 2024-04-29
|
||||
# lastmod: 2024-04-29
|
||||
draft: true
|
||||
description: "This is a new post about..."
|
||||
featured: false
|
||||
toc: true
|
||||
comments: true
|
||||
categories: Backstage
|
||||
tags:
|
||||
- hugo
|
||||
- meta
|
||||
---
|
||||
I spent a bit of time several months back making my sure my site's RSS would work well in a feed reader. This meant making a *lot* of modifications to the [default Hugo RSS template](https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/_default/rss.xml). I made it load the full article text rather than just the summary, present correctly-formatted code blocks with no loss of important whitespace, include inline images, and even pass online validation checks:
|
||||
|
||||
[![Validate my RSS feed](valid-rss-rogers.png)](http://validator.w3.org/feed/check.cgi?url=https%3A//runtimeterror.dev/feed.xml)
|
||||
|
||||
But while the feed looks great when rendered by a reader, the browser presentation left some to be desired...
|
||||
|
||||
![Ugly RSS rendered without styling](ugly-rss.png)
|
||||
|
||||
It feels like there should be a friendlier way to present a feed "landing page" to help users new to RSS figure out what they need to do in order to follow a blog - and there absolutely is. In much the same way that you can prettify plain HTML with the inclusion of a CSS stylesheet, you can also style boring XML using [eXtensible Stylesheet Language Transformations (XSLT)](https://www.w3schools.com/xml/xsl_intro.asp).
|
||||
|
||||
So this post will describe how I styled
|
BIN
content/posts/prettify-hugo-rss-feed-xslt/ugly-rss.png
Normal file
BIN
content/posts/prettify-hugo-rss-feed-xslt/ugly-rss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 119 KiB |
BIN
content/posts/prettify-hugo-rss-feed-xslt/valid-rss-rogers.png
Normal file
BIN
content/posts/prettify-hugo-rss-feed-xslt/valid-rss-rogers.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3 KiB |
Loading…
Reference in a new issue