-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_data.json
20 lines (20 loc) · 1022 Bytes
/
search_data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: null
---
{
{% for page in site.pages %}
{% unless page.url contains '_layouts' or page.url contains '_posts' or page.url contains '_includes' or page.url contains 'assets' or page.url == '/search_data.json' or page.url == '/sitemaps.xml' or page.url == '/feed.xml' %}
"{{ page.url | slugify }}": {
"title": "{{ page.title | xml_escape }}",
"indicator_type": "{{ page.indicator_type | xml_escape }}",
"indicator_class": "{{ page.indicator_class | xml_escape }}",
"indicator_text": "{{ page.indicator_text | xml_escape }}",
"description": "{{ page.description | xml_escape }}",
"category": "{{ page.category | xml_escape }}",
"content": "{{ page.content | strip_html | strip_newlines | jsonify | xml_escape }}",
"url": "{{ page.url | xml_escape }}"
}
{% unless forloop.last %},{% endunless %}
{% endunless %}
{% endfor %}
}