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