diff --git a/package-lock.json b/package-lock.json index 8cfeeb69..58144dfb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "21.9.3", + "version": "21.9.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "21.9.3", + "version": "21.9.4", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index b5ae9781..ded5d311 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "21.9.3", + "version": "21.9.4", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/includes/partials/feeds/json.liquid b/src/includes/partials/feeds/json.liquid index 24c2e54e..52557386 100644 --- a/src/includes/partials/feeds/json.liquid +++ b/src/includes/partials/feeds/json.liquid @@ -1,21 +1,21 @@ { "version": "https://jsonfeed.org/version/1", - "title": "{{ title }}", - "home_page_url": "{{ permalink | absoluteUrl: globals.url }}", - "feed_url": "{{ permalink | absoluteUrl: globals.url }}.json", - "description": "{{ description }}", - "icon": "https://cdn.coryd.dev/{{ globals.feed_image }}?class=w200&v={% appVersion %}", - "favicon": "https://cdn.coryd.dev/{{ globals.favicon_ico }}?class=w50&v={% appVersion %}", + "title": "{{ title | escape }}", + "home_page_url": "{{ permalink | absoluteUrl: globals.url | escape }}", + "feed_url": "{{ permalink | absoluteUrl: globals.url | escape }}.json", + "description": "{{ description | escape }}", + "icon": "https://cdn.coryd.dev/{{ globals.feed_image | escape }}?class=w200&v={% appVersion %}", + "favicon": "https://cdn.coryd.dev/{{ globals.favicon_ico | escape }}?class=w50&v={% appVersion %}", "items": [ {%- assign entries = data | normalizeEntries: 20 -%} {%- for entry in entries -%} { - "id": "{{ entry.url | encodeAmp }}", - "url": "{{ entry.url | encodeAmp }}", - "title": "{{ entry.title | escape }}{%- if entry.authors %} via {{ entry.authors.name }}{%- endif %}{%- if entry.rating %} ({{ entry.rating }}){%- endif %}", - "content_text": "{{ entry.excerpt | escape }}", + "id": "{{ entry.url | encodeAmp | escape }}", + "url": "{{ entry.url | encodeAmp | escape }}", + "title": "{{ entry.title | escape }}{%- if entry.authors %} via {{ entry.authors.name | escape }}{%- endif %}{%- if entry.rating %} ({{ entry.rating | escape }}){%- endif %}", + "content_text": "{{ entry.excerpt | escape | replace: '\"', '\\"' }}", "date_published": "{{ entry.date | stringToRFC822Date }}" - }}{% if forloop.last == false %},{% endif %} + }{% if forloop.last == false %},{% endif %} {%- endfor %} ] } \ No newline at end of file