Allow pages to be excluded from search

This commit is contained in:
Patrick Marsceill
2018-12-16 14:47:41 -05:00
parent ed33ab18ac
commit eb0a6c328f
2 changed files with 29 additions and 5 deletions

View File

@@ -1,12 +1,12 @@
---
---
{
{% for page in site.html_pages %}"{{ forloop.index0 }}": {
{% for page in site.html_pages %}{% if page.exclude_search != true %}"{{ forloop.index0 }}": {
"id": "{{ forloop.index0 }}",
"title": "{{ page.title | xml_escape }}",
"content": "{{ page.content | markdownify | strip_html | xml_escape | remove: 'Table of contents' | strip_newlines | replace: '\', ' ' }}",
"content": "{{ page.content | markdownify | strip_html | json_escape | xml_escape | remove: 'Table of contents' | strip_newlines | replace: '\', ' ' | replace: '```', '' | replace: ' ', ' ' }}",
"url": "{{ page.url | absolute_url | xml_escape }}",
"relUrl": "{{ page.url | xml_escape }}"
}{% if forloop.last %}{% else %},
}{% if forloop.last %}{% else %},{% endif %}
{% endif %}{% endfor %}
}