forked from ioos/mbon-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.json
51 lines (44 loc) · 1.33 KB
/
search.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
title: search
layout: none
search: exclude
---
[
{% comment %}
{% for page in site.pages %}
{% unless page.search == "exclude" %}
{
"title": "{{ page.title | escape }}",
"tags": "{{ page.tags }}",
"keywords": "{{page.keywords}}",
"url": "{{ page.url | remove: "/"}}",
"summary": "{{page.summary | strip }}",
"body": "{{ page.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' | replace: ' ', ' ' }}",
}
{% unless forloop.last and site.posts.size < 1 %},{% endunless %}
{% endunless %}
{% endfor %}
{% for post in site.posts %}
{
"title": "{{ post.title | escape }}",
"tags": "{{ post.tags }}",
"keywords": "{{post.keywords}}",
"url": "{{ post.url | remove: "/" }}",
"summary": "{{post.summary | strip }}",
"body": "{{ post.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' | replace: ' ', ' ' }}",
}
{% unless forloop.last and site.docs.size < 1 %},{% endunless %}
{% endfor %}
{% endcomment %}
{% for doc in site.docs %}
{
"title": "{{ doc.title | escape }}",
"tags": "{{ doc.tags }}",
"keywords": "{{doc.keywords}}",
"url": "{{ doc.url | remove: "/" }}",
"summary": "{{doc.summary | strip }}",
"body": "{{ doc.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' | replace: ' ', ' ' }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
]