notes/assets/js/search-data.json

13 lines
530 B
JSON
Raw Normal View History

2018-10-23 17:09:23 +00:00
---
---
{
2018-12-16 20:23:33 +00:00
{% for page in site.html_pages %}{% if page.search_exclude != true %}"{{ forloop.index0 }}": {
2018-10-23 17:09:23 +00:00
"id": "{{ forloop.index0 }}",
"title": "{{ page.title | replace: '&', '&' }}",
2019-01-16 02:19:37 +00:00
"content": "{{ page.content | markdownify | strip_html | escape_once | remove: 'Table of contents' | remove: '```' | remove: '---' | replace: '\', ' ' | normalize_whitespace }}",
"url": "{{ page.url | absolute_url }}",
"relUrl": "{{ page.url }}"
}{% unless forloop.last %},{% endunless %}
2018-10-23 17:09:23 +00:00
{% endif %}{% endfor %}
}