forked from micro-ROS/micro-ROS.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.json
More file actions
22 lines (20 loc) · 520 Bytes
/
search.json
File metadata and controls
22 lines (20 loc) · 520 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
---
[
{% for section in site.data.docs %}
{% for item in section.docs %}
{% assign item_url = item | prepend:"/docs/" | append:"/" %}
{% assign p = site.docs | where:"url", item_url | first %}
{
"title": "{{ p.title }}",
"url": "{{ p.url | prepend: site.baseurl }}"
},
{% endfor %}
{% endfor %}
{% for post in site.posts %}
{
"title": "{{ post.title | escape }}",
"url": "{{ post.url | prepend: site.baseurl }}"
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]