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
No known key found for this signature in database
GPG Key ID: 286B93882D828F40
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 %}
}

View File

@ -5,6 +5,15 @@ nav_order: 7
---
# Search
{:.no_toc}
## Table of contents
{: .no_toc .text-delta }
1. TOC
{:toc}
---
Just the docs uses [lunr.js](http://lunrjs.com) to add a client-side search interface powered by a JSON index that Jekyll generates. All search results are shown in an auto-complete style interface (there is no search results page). By default, all generated html pages are indexed using the following data points:
@ -14,7 +23,7 @@ Just the docs uses [lunr.js](http://lunrjs.com) to add a client-side search inte
## Set up search
### 1. Generate search index
### Generate search index
Before you can use search, you must initialize the feature by running this
rake command that comes with the `just-the-docs`
@ -44,7 +53,7 @@ your search index. Alternatively, you can create the file manually in the
_Note: If you don't run this rake command or create this file manually, search will not work (or it will use the search index data from this docs site, not your site's content)._
### 2. Enable search in configuration
### Enable search in configuration
In your site's `_config.yml` enable search:
@ -52,3 +61,18 @@ In your site's `_config.yml` enable search:
# Enable or disable the site search
search_enabled: true
```
## Hiding pages from search
Sometimes you might have a page that you don't want indexed in the search and you don't want it to show up in search results, e.g, a 404 page. To exclude a page from search, add the `search_exclude: true` parameter to the page's YAML front matter:
#### Example
{: .no_toc }
```yaml
---
layout: default
title: Page not found
nav_exclude: true
search_exclude: true
---
```