<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/rss/rss.xsl"?>
<rss version="2.0">
  <how_styling_rss_works style="display: none;" xml:lang="en-us" type="html">
# Styling RSS w XLS notes

XML files can include both xml-stylesheets (XSLT) and normal stylesheets (CSS).
XSLT files are transformations, and allow you to process an XML doc into an HTML doc (among other things).
In this case, it doesn't matter if we import the CSS here or via /rss/rss.xsl -- it gets applied either way.
The XSLT will output HTML for us, but the HTML content from the RSS feed (i.e., the bodies of posts) must be unescaped.
There's a special attribute (`disable-output-escaping`) which will do that.
However, we need to run some JS, too, because not every browser supports decoding html like that.

* firefox does not seem to support `disable-output-escaping="yes"`, so it requires the JS in rss.js
* chrome does support `disable-output-escaping="yes"`, so don't remove those attrs

The JS works by testing `#cometestme`, and then (if needed) looping over elements matching `[name=decodable]` and basically `el.innerHTML = el.textContent`.

Note, `disable-output-escaping="yes"` is a legacy feature from XSLT v1.0; the new way to do it is with character maps.
When I tried those, they didn't seem to work in firefox (which is when I tried the original JS).
IDK if chrome support character maps, but if it does, then that is a good update to implement. TODO I guess.

</how_styling_rss_works>
  <channel>
    <title>Where to find my recent work</title>
    <description type="html" xml:lang="en-us">&lt;p&gt;I&amp;#39;ve been focusing on philosophy more lately.
During late January I decided to post my &lt;a href="https://www.youtube.com/watch?v=_Hd1AmLPEyA"&gt;self-unendorsement video&lt;/a&gt;.
I&amp;#39;ve been adding to my &lt;a href="https://curi.us/2380"&gt;curi.us microblog&lt;/a&gt; regularly.
That is where you should go to find my latest work.
I post almost everything I produce to that thread.&lt;/p&gt;

&lt;p&gt;For the past few days I have been doing making daily updates to &lt;a href="https://www.youtube.com/playlist?list=PLyqNe7EpSQmlGHB81-hzp-DZTFjVFVmWk"&gt;my makeup vlog&lt;/a&gt;
and will continue doing that for the next week and a bit.
I&amp;#39;ve also created a vanity URL for the playlist: &lt;a href="https://xk.io/muv"&gt;https://xk.io/muv&lt;/a&gt;.
I link the playlist for these videos (and most videos individually) in my microblog, too.&lt;/p&gt;

&lt;p&gt;I will continue posting to my microblog.
I consider my blog at xk.io mostly deprecated -- I don&amp;#39;t anticipate posting much here until I find a new blog system.&lt;/p&gt;
</description>
    <categoryTags>
    </categoryTags>
    <link>https://forum.xk.io/n/2035</link>
  </channel>
</rss>
