diff --git a/src/feed.11ty.liquid b/src/feed.11ty.liquid index d04f635a..a48db8ed 100644 --- a/src/feed.11ty.liquid +++ b/src/feed.11ty.liquid @@ -14,6 +14,7 @@ permalink: '/feed.json' "title": "{{ item.data.title }}", "url": "{{ site.url }}{{ item.url }}", "content_html": "", + "content_text": "{{ item.data.title }} {{ site.url }}{{ item.url }}", "date_published": "{{ item.date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}" }{% if not forloop.last %},{% endif %} {% endfor %} diff --git a/src/follow.11ty.liquid b/src/follow.11ty.liquid index eabd3e33..3fda00dd 100644 --- a/src/follow.11ty.liquid +++ b/src/follow.11ty.liquid @@ -14,6 +14,7 @@ permalink: '/follow.json' "title": "{{ item.title }}", "url": "{{ item.url }}", "content_html": "", + "content_text": "{{ item.title }} {{ item.url }}", "date_published": "{{ item.date_published | date: "%Y-%m-%dT%H:%M:%S-08:00" }}" }{% if not forloop.last %},{% endif %} {% endfor %}