diff --git a/assets/js/search-data.json b/assets/js/search-data.json index 12de52214628d45f174450e1a584b98ac0ba0892..e78d186032d66e09491fafcf559d572b0cdeb884 100644 --- a/assets/js/search-data.json +++ b/assets/js/search-data.json @@ -7,6 +7,6 @@ "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 }}", "url": "{{ page.url | absolute_url | xml_escape }}", "relUrl": "{{ page.url | xml_escape }}" - }{% if forloop.last %}{% else %},{% endif %} + }{% unless forloop.last %},{% endunless %} {% endif %}{% endfor %} } diff --git a/docs/search.md b/docs/search.md index 61822d5a073f795efd19f79c961ff6845faf1dea..33a9555d897b524c6f9964a3a39525744cd7dbe8 100644 --- a/docs/search.md +++ b/docs/search.md @@ -37,13 +37,13 @@ This command creates the `search-data.json` file that Jekyll uses to create your {% raw %}--- --- { - {% for page in site.html_pages %}"{{ forloop.index0 }}": { + {% for page in site.html_pages %}{% if page.search_exclude != true %}"{{ forloop.index0 }}": { "id": "{{ forloop.index0 }}", "title": "{{ page.title | xml_escape }}", "content": "{{ page.content | markdownify | strip_html | xml_escape | remove: 'Table of contents' | remove: page.title | strip_newlines | replace: '\', ' '}}", "url": "{{ page.url | absolute_url | xml_escape }}", "relUrl": "{{ page.url | xml_escape }}" - }{% if forloop.last %}{% else %}, + }{% unless forloop.last %},{% endunless %} {% endif %}{% endfor %} }{% endraw %} ``` diff --git a/lib/tasks/search.rake b/lib/tasks/search.rake index 02d0b5e421b9421056586783dd3f1e745bd12b80..bcb01db59ea8e3387e229cce71732c22419ff507 100644 --- a/lib/tasks/search.rake +++ b/lib/tasks/search.rake @@ -12,13 +12,13 @@ namespace :search do f.puts '--- --- { - {% for page in site.html_pages %}"{{ forloop.index0 }}": { + {% for page in site.html_pages %}{% if page.search_exclude != true %}"{{ forloop.index0 }}": { "id": "{{ forloop.index0 }}", "title": "{{ page.title | xml_escape }}", "content": "'+content+'", "url": "{{ page.url | absolute_url | xml_escape }}", "relUrl": "{{ page.url | xml_escape }}" - }{% if forloop.last %}{% else %}, + }{% unless forloop.last %},{% endunless %} {% endif %}{% endfor %} }' end