notes/docs/search.md

79 lines
2.1 KiB
Markdown
Raw Normal View History

2017-04-08 22:51:14 +00:00
---
layout: default
title: Search
2018-11-16 16:47:14 +00:00
nav_order: 7
2017-04-08 22:51:14 +00:00
---
# Search
2018-12-16 19:47:41 +00:00
{:.no_toc}
## Table of contents
{: .no_toc .text-delta }
1. TOC
{:toc}
---
2017-04-08 22:51:14 +00:00
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:
- Page title
- Page content
- Page URL
2018-11-16 16:47:30 +00:00
## Set up search
2018-12-16 19:47:41 +00:00
### Generate search index
2017-11-08 16:23:05 +00:00
Before you can use search, you must initialize the feature by running this
rake command that comes with the `just-the-docs`
```bash
$ bundle exec just-the-docs rake search:init
```
This command creates the `search-data.json` file that Jekyll uses to create
your search index. Alternatively, you can create the file manually in the
2018-10-24 18:06:41 +00:00
`assets/js/` of your Jekyll site with this content:
2017-11-08 16:23:05 +00:00
```{% raw %}
---
---
{
{% for page in site.html_pages %}"{{ 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 }}"
2017-11-08 16:23:05 +00:00
}{% if forloop.last %}{% else %},
{% endif %}{% endfor %}
}{% endraw %}
```
2018-10-24 18:06:41 +00:00
_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)._
2018-11-16 16:47:30 +00:00
2018-12-16 19:47:41 +00:00
### Enable search in configuration
2018-11-16 16:47:30 +00:00
In your site's `_config.yml` enable search:
```yml
# Enable or disable the site search
search_enabled: true
```
2018-12-16 19:47:41 +00:00
## 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
---
```