The bmannconsulting.com website

full link paths for feed

Changed files
+19 -1
_journals
+18
_journals/2024-01-08_1019.md
···
+
---
+
title: January 8th, 2024
+
date: 2024-01-08, 10:19:18 -08:00
+
section: journal
+
aliases:
+
tags:
+
- RSS
+
- colophon
+
- jekyll
+
- liquid
+
---
+
I have continued my Jekyll Liquid crimes by using `replace` to make all the images and notes full links:
+
+
```liquid
+
{{ post.content | xml_escape | replace: 'src="/', 'src="https://bmannconsulting.com/' | replace: 'href="/', 'href="https://bmannconsulting.com/' }}
+
```
+
+
[Journal RSS feed code on Github](https://github.com/bmann/bmcgarden/blob/archivetrim/journal.xml)
+1 -1
journal.xml
···
{% if site.name %}
<dc:creator>{{ site.name | xml_escape }}</dc:creator>
{% endif %}
-
<description>{{ post.content | xml_escape | replace: 'src=&quot;/', 'src=&quot;https://bmannconsulting.com/' }}</description>
+
<description>{{ post.content | xml_escape | replace: 'src=&quot;/', 'src=&quot;https://bmannconsulting.com/' | replace: 'href=&quot;/', 'href=&quot;https://bmannconsulting.com/' }}</description>
<link>{{ site.url }}{{ post.url }}</link>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<guid isPermaLink="true">https://bmannconsulting.com{{ post.url }}</guid>