notes/search-data.json

14 lines
364 B
JSON
Raw Normal View History

2017-03-09 18:16:08 +00:00
---
---
2017-03-24 13:47:37 +00:00
{
2017-03-27 01:09:19 +00:00
{% for page in site.html_pages %}
"{{ forloop.index0 }}": {
"id": "{{ forloop.index0 }}",
2017-03-24 13:47:37 +00:00
"title": "{{ page.title | xml_escape }}",
"content": "{{ page.content | strip_html | strip_newlines | escape | remove: "\"}}",
"url": " {{ page.url | xml_escape }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
}