chore: revert escapes
This commit is contained in:
parent
4e508dd6b0
commit
9104491108
1 changed files with 2 additions and 2 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 | stringToRFC822Date }}"
|
"date_published": "{{ entry.date | stringToRFC822Date }}"
|
||||||
}{% if not forloop.last %},{% endif %}
|
}{% if not forloop.last %},{% endif %}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
|
|
Reference in a new issue