fix: escape html

This commit is contained in:
Cory Dransfeldt 2023-03-28 12:38:51 -07:00
parent 824bb49839
commit a5af756a19
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ permalink: '/feed.json'
"id": "{{ site.url }}{{ item.url }}" "id": "{{ site.url }}{{ item.url }}"
"title": "{{ item.data.title }}", "title": "{{ item.data.title }}",
"url": "{{ site.url }}{{ item.url }}", "url": "{{ site.url }}{{ item.url }}",
"content_html": "{{ item.data.post_excerpt | mdToHtml }}", "content_html": "{{ item.data.post_excerpt | mdToHtml | escape }}",
"date_published" "{{ item.date | date: "%Y-%m-%dT%H:%M" }}" "date_published" "{{ item.date | date: "%Y-%m-%dT%H:%M" }}"
}{% if not forloop.last %},{% endif %} }{% if not forloop.last %},{% endif %}
{% endfor %} {% endfor %}

View file

@ -13,7 +13,7 @@ permalink: '/follow.json'
"id": "{{ item.id }}", "id": "{{ item.id }}",
"title": "{{ item.title }}", "title": "{{ item.title }}",
"url": "{{ item.url }}", "url": "{{ item.url }}",
"content_html": "{{ item.content_html | mdToHtml }}", "content_html": "{{ item.content_html | mdToHtml | escape }}",
"date_published": "{{ item.date_published | date: "%Y-%m-%dT%H:%M" }}" "date_published": "{{ item.date_published | date: "%Y-%m-%dT%H:%M" }}"
}{% if not forloop.last %},{% endif %} }{% if not forloop.last %},{% endif %}
{% endfor %} {% endfor %}