blob: 68f56ff15bf2dd97bdf60e44b6655ce2acca41f0 (
plain)
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
|
---
---
const do_search = function() {
// data
var pages = [
{% for post in site.posts %}
{
"id": "{{ post.url | slufigy }}",
"title": {{ post.title | jsonify }},
"content": {{ post.content | strip_html | jsonify }},
"url": "{{ post.url | xml_escape }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
];
// index
const idx = lunr(function () {
this.ref('url');
this.field('title');
this.field('content');
pages.forEach(function (doc) {
this.add(doc);
}, this);
});
function do_search(queryterm) {
const result = idx.search(queryterm);
return result.map(r => pages.find((p) => p.id === r.ref));
}
return do_search;
}();
|