From 408b7bcc2c05785b5b627f68a6feea337c17ebed Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 20 Apr 2024 12:31:13 -0700 Subject: [PATCH] fix: tags --- src/_includes/partials/feeds/json.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_includes/partials/feeds/json.liquid b/src/_includes/partials/feeds/json.liquid index fc5d945b..40067cce 100644 --- a/src/_includes/partials/feeds/json.liquid +++ b/src/_includes/partials/feeds/json.liquid @@ -10,7 +10,7 @@ "id": "{{ entry.url | btoa }}", "title": "{{ entry.title | replaceQuotes }}", "url": "{{ entry.url }}", - "content_text": "{{ entry.title | replaceQuotes }} {{ entry.url }}", + "content_text": "{{ entry.title | replaceQuotes }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}", "date_published": "{{ entry.date | stringToRFC822Date }}" }{% if not forloop.last %},{% endif %} {%- endfor %}