forked from OctoPrint/plugins.octoprint.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.json
More file actions
16 lines (16 loc) · 691 Bytes
/
search.json
File metadata and controls
16 lines (16 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
---
{
"docs": [{% for plugin in site.plugins %}{% capture author %}{% include authors_csv plugin=plugin %}{% endcapture %}
{
"id": "{{ plugin.id }}",
"url": "{{ plugin.url | prepend: site.baseurl }}",
"date": "{{ plugin.date }}",
"title": {{ plugin.title | strip_html | strip_newlines | jsonify }},
"description": {{ plugin.description | strip_html | strip_newlines | jsonify }},
"author": {{ author | strip_html | strip_newlines | jsonify }},
"content": {{ plugin.content | strip_html | strip_newlines | jsonify }},
"tags": {% if plugin.tags %}{{ plugin.tags | jsonify }}{% endif %}{% unless plugin.tags %}[]{% endunless %}
}{% unless forloop.last %},{% endunless %}
{% endfor %}]
}