chore: fix escapes
This commit is contained in:
parent
804c9ded3f
commit
c1bb14956a
2 changed files with 4 additions and 4 deletions
|
@ -8,9 +8,9 @@
|
||||||
"items": [{% for entry in entries limit: 20 -%}
|
"items": [{% for entry in entries limit: 20 -%}
|
||||||
{
|
{
|
||||||
"id": "{{ entry.url | btoa }}",
|
"id": "{{ entry.url | btoa }}",
|
||||||
"title": "{{ entry.title | escape }}",
|
"title": "{{ entry.title }}",
|
||||||
"url": "{{ entry.url }}",
|
"url": "{{ entry.url }}",
|
||||||
"content_text": "{{ entry.title | escape }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}",
|
"content_text": "{{ entry.title }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}",
|
||||||
"date_published": "{{ entry.date | stringToDate | dateToRfc822 }}"
|
"date_published": "{{ entry.date | stringToDate | dateToRfc822 }}"
|
||||||
}{% if not forloop.last %},{% endif %}
|
}{% if not forloop.last %},{% endif %}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
|
|
|
@ -15,11 +15,11 @@
|
||||||
</image>
|
</image>
|
||||||
{% for entry in entries limit: 20 -%}
|
{% for entry in entries limit: 20 -%}
|
||||||
<item>
|
<item>
|
||||||
<title>{{ entry.title | escape }}</title>
|
<title>{{ entry.title }}</title>
|
||||||
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
||||||
<pubDate>{{ entry.date }}</pubDate>
|
<pubDate>{{ entry.date }}</pubDate>
|
||||||
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
||||||
<description>{{ entry.excerpt | markdown | escape }}</description>
|
<description>{{ entry.excerpt | markdown }}</description>
|
||||||
</item>
|
</item>
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
</channel>
|
</channel>
|
||||||
|
|
Reference in a new issue