1
0
mirror of https://github.com/thangisme/notes.git synced 2024-11-06 21:17:23 -05:00
notes/assets/js/search-data.json

13 lines
565 B
JSON
Raw Normal View History

2018-10-23 13:09:23 -04:00
---
---
{
2018-12-16 14:47:41 -05:00
{% for page in site.html_pages %}{% if page.exclude_search != true %}"{{ forloop.index0 }}": {
2018-10-23 13:09:23 -04:00
"id": "{{ forloop.index0 }}",
"title": "{{ page.title | xml_escape }}",
2018-12-16 14:47:41 -05:00
"content": "{{ page.content | markdownify | strip_html | json_escape | xml_escape | remove: 'Table of contents' | strip_newlines | replace: '\', ' ' | replace: '```', '' | replace: ' ', ' ' }}",
2018-10-23 13:09:23 -04:00
"url": "{{ page.url | absolute_url | xml_escape }}",
"relUrl": "{{ page.url | xml_escape }}"
2018-12-16 14:47:41 -05:00
}{% if forloop.last %}{% else %},{% endif %}
2018-10-23 13:09:23 -04:00
{% endif %}{% endfor %}
}