krata/assets/js/data/search.json

18 lines
504 B
JSON
Raw Normal View History

2019-09-30 14:38:41 +02:00
---
layout: compress
2019-09-30 14:38:41 +02:00
---
2019-09-30 14:38:41 +02:00
[
{% for post in site.posts %}
{
"title": "{{ post.title | escape }}",
"url": "{{ post.url | relative_url }}",
2019-09-30 14:38:41 +02:00
"categories": "{{ post.categories | join: ', '}}",
"tags": "{{ post.tags | join: ', ' }}",
"date": "{{ post.date }}",
{% include no-linenos.html content=post.content %}
2021-09-04 15:23:43 +02:00
"snippet": "{{ content | strip_html | strip_newlines | remove_chars | escape | replace: '\', '\\\\' }}"
2019-09-30 14:38:41 +02:00
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]