diff --git a/src/site/_includes/layouts/index.njk b/src/site/_includes/layouts/index.njk
index 7a6c58e..f47ed72 100644
--- a/src/site/_includes/layouts/index.njk
+++ b/src/site/_includes/layouts/index.njk
@@ -52,7 +52,7 @@
{% for imp in dynamics.index.beforeContent %}
{% include imp %}
{% endfor %}
- {{ content | hideDataview | link | taggify | safe}}
+ {{ content | hideDataview | taggify | link | safe}}
{% for imp in dynamics.common.afterContent %}
{% include imp %}
{% endfor %}
diff --git a/src/site/_includes/layouts/note.njk b/src/site/_includes/layouts/note.njk
index eb9e70a..314b902 100644
--- a/src/site/_includes/layouts/note.njk
+++ b/src/site/_includes/layouts/note.njk
@@ -67,7 +67,7 @@ permalink: "notes/{{ page.fileSlug | slugify }}/"
{% for imp in dynamics.notes.beforeContent %}
{% include imp %}
{% endfor %}
- {{ content | hideDataview | link | taggify | safe}}
+ {{ content | hideDataview | taggify | link | safe}}
{% for imp in dynamics.common.afterContent %}
{% include imp %}
{% endfor %}
diff --git a/src/site/feed.njk b/src/site/feed.njk
index bcf89e2..c623c6e 100644
--- a/src/site/feed.njk
+++ b/src/site/feed.njk
@@ -21,7 +21,7 @@
{%if note.data.updated %}{{ note.data.updated | dateToZulu }}{%else%}{{ note.date | dateToRfc3339 }}{%endif%}
{{ meta.siteBaseUrl }}{{note.url | url }}
- {{ note.templateContent | hideDataview | link | taggify | htmlToAbsoluteUrls(meta.siteBaseUrl) }}
+ {{ note.templateContent | hideDataview | taggify | link | htmlToAbsoluteUrls(meta.siteBaseUrl) }}