From d9da1978198ada310d1a6dadef833b8bd9b6bc84 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 13 May 2024 14:01:26 -0700 Subject: [PATCH] chore: chart tagging --- config/filters/index.js | 1 + src/_includes/partials/feeds/json.liquid | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/filters/index.js b/config/filters/index.js index e2160603..bbf08906 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -55,6 +55,7 @@ export default { }, tagLookup: (url, tagMap) => { if (!url) return + if (url.includes('#artists')) return `#Music` if (url.includes('openlibrary.org')) return `#Books #NowReading ${tagMap[url]}`.trim() if (url.includes('trakt.tv')) return `#Movies #Watching ${tagMap[url]}`.trim() return tagMap[url] || '' diff --git a/src/_includes/partials/feeds/json.liquid b/src/_includes/partials/feeds/json.liquid index b71858be..c2a3de8d 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 }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}", + "content_text": "{{ entry.title | replaceQuotes }}{% if entry.url | tagLookup: tagMap %} {{ entry.url | tagLookup: tagMap }} {{ entry.url }}{% else %} {{ entry.url }}{% endif %}", "date_published": "{{ entry.date | stringToRFC822Date }}" }{% if not forloop.last %},{% endif %} {%- endfor %}