notes/assets/js/search-data.json

13 lines
746 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 | xml_escape }}",
2019-01-06 20:51:17 +00:00
"content": "{{ page.content | newline_to_br | replace: '<br />', ' ' | replace: '</h1>', ' ' | strip_newlines | markdownify | strip_html | remove: 'Table of contents' | xml_excape | escape | replace: '\', ' ' | replace: '```', '' | replace: ' ', ' ' | replace: ' ', ' ' | remove: '---' | remove: '#####' | remove: '####' | remove: '###' | remove: '##' | strip_newlines }}",
2018-10-23 17:09:23 +00:00
"url": "{{ page.url | absolute_url | xml_escape }}",
"relUrl": "{{ page.url | xml_escape }}"
2018-12-16 19:47:41 +00:00
}{% if forloop.last %}{% else %},{% endif %}
2018-10-23 17:09:23 +00:00
{% endif %}{% endfor %}
}