The bmannconsulting.com website

Add raw tags

Changed files
+7 -3
_journals
+7 -3
_journals/2024-01-08_1019.md
···
- jekyll
- liquid
---
-
I have continued my Jekyll Liquid crimes by using `replace` to make all the images and notes full links:
+
I have continued my Jekyll Liquid crimes by using `replace` to make all the images and notes full links[^raw]:
-
```liquid
+
```
+
{% raw %}
{{ post.content | xml_escape | replace: 'src="/', 'src="https://bmannconsulting.com/' | replace: 'href="/', 'href="https://bmannconsulting.com/' }}
+
{% endraw %}
```
-
[Journal RSS feed code on Github](https://github.com/bmann/bmcgarden/blob/archivetrim/journal.xml)
+
[Journal RSS feed code on Github](https://github.com/bmann/bmcgarden/blob/archivetrim/journal.xml)
+
+
[^raw]: And a reminder that i need to use the [raw tag in Liquid](https://shopify.dev/docs/api/liquid/tags/raw) if I want to display template code!