Back in 2006, I wrote a nice XSLT that converted my RSS feeds into custom HTML. That way, if the user clicks the browser, it will appear as a simple page, not a bunch of unwanted XML. If the same URL was used in the feed reader, it was handled correctly and everything was stain.
Currently, most browsers (IE, Firefox, Safari, Opera) seem to capture styles and don't let go. And Chrome just ignores the conversion of style sheets.
Given that several years have passed, am I just forgetting some details? Isn't it that simple?
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="/atom2html.xslt"?>
<feed xmlns="http://www.w3.org/2005/Atom">
</feed>
Does anyone know if there is a way to override those browsers with very specific feed style ideas? And is there a way to get something good from Chrome?
source
share