<?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>*Freedom* and *Universality* are linked</title>
    <description type="html" xml:lang="en-us">&lt;p&gt;I think freedom and universality must have some deep connection.&lt;/p&gt;

&lt;p&gt;If you have the &lt;em&gt;freedom&lt;/em&gt; to do something, that means -- wrt that context -- you can do whatever you like. You&amp;#39;re &lt;em&gt;unconstrained&lt;/em&gt;; that aspect &lt;em&gt;cannot&lt;/em&gt; (or at least should not) be a &lt;em&gt;bottleneck&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;That gives you some unboundedness wrt method, or content, or whatever the freedom relates to. Freedom of speech removes a bound on speech. Freedom of thought removes a bound on thought.&lt;/p&gt;

&lt;p&gt;Freedom &lt;em&gt;enables&lt;/em&gt; universality; and without certain freedoms, you cannot have certain universalities.&lt;/p&gt;

&lt;p&gt;I thought that freedom and thinking were like orthogonal; both necessary for philosophy and good life, but neither sufficient. Now I suspect there&amp;#39;s more there than I realized.&lt;/p&gt;
</description>
    <categoryTags>
      <item>
        <text>philosophy</text>
      </item>
      <item>
        <text>CF</text>
      </item>
    </categoryTags>
    <link>https://forum.xk.io/n/10012</link>
  </channel>
</rss>
