We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddbce72 commit b329c14Copy full SHA for b329c14
package.json
@@ -17,7 +17,8 @@
17
},
18
"dependencies": {
19
"jquery": "3.5.1",
20
- "lunr": "2.3.9"
+ "lunr": "2.3.9",
21
+ "simple-jekyll-search": "1.10.0"
22
23
"license": "GPL-2.0"
24
}
search.json
@@ -0,0 +1,14 @@
1
+---
2
+layout: none
3
4
+[
5
+ {% for post in site.posts %}
6
+ {
7
+ "title" : "{{ post.title | escape }}",
8
+ "category" : "{{ post.category }}",
9
+ "tags" : "{{ post.tags | join: ', ' }}",
10
+ "url" : "{{ site.baseurl }}{{ post.url }}",
11
+ "date" : "{{ post.date }}"
12
+ } {% unless forloop.last %},{% endunless %}
13
+ {% endfor %}
14
+]
0 commit comments