The bmannconsulting.com website

fix double encoding

+2 -3
journal-fedica-mastodon.xml fedica-hashtags.xml
···
{% for post in sortedblog limit:20 %}
<item>
<dc:creator>Boris Mann</dc:creator>
-
{% assign description = post.content | xml_escape | replace: 'src=&quot;/', 'src=&quot;https://bmannconsulting.com/' | replace: 'href=&quot;/', 'href=&quot;https://bmannconsulting.com/' %}
{% comment %} Capture: we loop through all of the tags and make a list of hashtags separated by spaces {% endcomment %}
{% capture taglist %}{% for tag in post.tags %} #{{ tag }}{% endfor %}{% endcapture %}
-
{% assign description = description | append: taglist %}
-
<description>{{ description | xml_escape }}</description>
{% if post.link %}
<link>{{ post.link }}</link>
{% else %}
···
{% for post in sortedblog limit:20 %}
<item>
<dc:creator>Boris Mann</dc:creator>
{% comment %} Capture: we loop through all of the tags and make a list of hashtags separated by spaces {% endcomment %}
{% capture taglist %}{% for tag in post.tags %} #{{ tag }}{% endfor %}{% endcapture %}
+
{% assign description = post.content | append: taglist %}
+
<description>{{ description | xml_escape | replace: 'src=&quot;/', 'src=&quot;https://bmannconsulting.com/' | replace: 'href=&quot;/', 'href=&quot;https://bmannconsulting.com/' }}</description>
{% if post.link %}
<link>{{ post.link }}</link>
{% else %}
-34
journal-fedica.xml
···
-
---
-
---
-
<?xml version="1.0" encoding="UTF-8"?>
-
<rss version="2.0"
-
xmlns:atom="http://www.w3.org/2005/Atom"
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
-
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
-
>
-
<channel>
-
<title>{{ site.name | xml_escape }} - Journal Feed</title>
-
<description>A journal feed built for Fedica to cross-post</description>{% comment %} See https://bmannconsulting.com/notes/fedica/ for cross-posting rules {% endcomment %}
-
<link>{{ site.url }}</link>
-
<atom:link href="{{ site.url }}{{ page.url }}" rel="self" type="application/rss+xml" />
-
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
-
{% assign sortedblog = site.journals | sort: 'date' | reverse %}
-
{% for post in sortedblog limit:20 %}
-
<item>
-
<dc:creator>Boris Mann</dc:creator>
-
{% assign description = post.content | strip_html %}
-
{% if post.link %}
-
{% assign description = description | append: " " | append: post.link %}
-
{% endif %}
-
{% if description.size > 250 %}
-
<description>{{ post.content | xml_escape }}</description>
-
{% else %}
-
<description>{{ description | xml_escape }}</description>
-
{% endif %}
-
<link>{{ site.url }}{{ post.url }}</link>
-
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
-
<guid isPermaLink="true">https://bmannconsulting.com{{ post.url }}</guid>
-
</item>
-
{% endfor %}
-
</channel>
-
</rss>
···